Lines Matching refs:directives

683 	zval directives, version, blacklist;  local
696 array_init(&directives);
697 add_assoc_bool(&directives, "opcache.enable", ZCG(enabled));
698 add_assoc_bool(&directives, "opcache.enable_cli", ZCG(accel_directives).enable_cli);
699 add_assoc_bool(&directives, "opcache.use_cwd", ZCG(accel_directives).use_cwd);
700 …add_assoc_bool(&directives, "opcache.validate_timestamps", ZCG(accel_directives).validate_timestam…
701 …add_assoc_bool(&directives, "opcache.validate_permission", ZCG(accel_directives).validate_permissi…
703 add_assoc_bool(&directives, "opcache.validate_root", ZCG(accel_directives).validate_root);
705 add_assoc_bool(&directives, "opcache.inherited_hack", ZCG(accel_directives).inherited_hack);
706 add_assoc_bool(&directives, "opcache.dups_fix", ZCG(accel_directives).ignore_dups);
707 add_assoc_bool(&directives, "opcache.revalidate_path", ZCG(accel_directives).revalidate_path);
709 …add_assoc_long(&directives, "opcache.log_verbosity_level", ZCG(accel_directives).log_verbosit…
710 …add_assoc_long(&directives, "opcache.memory_consumption", ZCG(accel_directives).memory_consum…
711 …add_assoc_long(&directives, "opcache.interned_strings_buffer",ZCG(accel_directives).interned_stri…
712 …add_assoc_long(&directives, "opcache.max_accelerated_files", ZCG(accel_directives).max_accelera…
713 …add_assoc_double(&directives, "opcache.max_wasted_percentage", ZCG(accel_directives).max_wasted_p…
714 …add_assoc_long(&directives, "opcache.consistency_checks", ZCG(accel_directives).consistency_…
715 …add_assoc_long(&directives, "opcache.force_restart_timeout", ZCG(accel_directives).force_restar…
716 …add_assoc_long(&directives, "opcache.revalidate_freq", ZCG(accel_directives).revalidate_f…
717 …add_assoc_string(&directives, "opcache.preferred_memory_model", STRING_NOT_NULL(ZCG(accel_directiv…
718 …add_assoc_string(&directives, "opcache.blacklist_filename", STRING_NOT_NULL(ZCG(accel_directiv…
719 …add_assoc_long(&directives, "opcache.max_file_size", ZCG(accel_directives).max_file_siz…
720 …add_assoc_string(&directives, "opcache.error_log", STRING_NOT_NULL(ZCG(accel_directiv…
722 …add_assoc_bool(&directives, "opcache.protect_memory", ZCG(accel_directives).protect_memo…
723 …add_assoc_bool(&directives, "opcache.save_comments", ZCG(accel_directives).save_comment…
724 …add_assoc_bool(&directives, "opcache.fast_shutdown", ZCG(accel_directives).fast_shutdow…
725 …add_assoc_bool(&directives, "opcache.enable_file_override", ZCG(accel_directives).file_overrid…
726 …add_assoc_long(&directives, "opcache.optimization_level", ZCG(accel_directives).optimization…
729 …add_assoc_string(&directives, "opcache.lockfile_path", STRING_NOT_NULL(ZCG(accel_directiv…
733 …add_assoc_string(&directives, "opcache.file_cache", ZCG(accel_directives).file_…
734 …add_assoc_bool(&directives, "opcache.file_cache_only", ZCG(accel_directives).file_…
735 …add_assoc_bool(&directives, "opcache.file_cache_consistency_checks", ZCG(accel_directives).file_…
738 add_assoc_zval(return_value, "directives", &directives);