Lines Matching refs:directives

765 	zval directives, version, blacklist;  local
778 array_init(&directives);
779 add_assoc_bool(&directives, "opcache.enable", ZCG(enabled));
780 add_assoc_bool(&directives, "opcache.enable_cli", ZCG(accel_directives).enable_cli);
781 add_assoc_bool(&directives, "opcache.use_cwd", ZCG(accel_directives).use_cwd);
782 …add_assoc_bool(&directives, "opcache.validate_timestamps", ZCG(accel_directives).validate_timestam…
783 …add_assoc_bool(&directives, "opcache.validate_permission", ZCG(accel_directives).validate_permissi…
785 add_assoc_bool(&directives, "opcache.validate_root", ZCG(accel_directives).validate_root);
787 add_assoc_bool(&directives, "opcache.dups_fix", ZCG(accel_directives).ignore_dups);
788 add_assoc_bool(&directives, "opcache.revalidate_path", ZCG(accel_directives).revalidate_path);
790 …add_assoc_long(&directives, "opcache.log_verbosity_level", ZCG(accel_directives).log_verbosit…
791 …add_assoc_long(&directives, "opcache.memory_consumption", ZCG(accel_directives).memory_consum…
792 …add_assoc_long(&directives, "opcache.interned_strings_buffer",ZCG(accel_directives).interned_stri…
793 …add_assoc_long(&directives, "opcache.max_accelerated_files", ZCG(accel_directives).max_accelera…
794 …add_assoc_double(&directives, "opcache.max_wasted_percentage", ZCG(accel_directives).max_wasted_p…
795 …add_assoc_long(&directives, "opcache.force_restart_timeout", ZCG(accel_directives).force_restar…
796 …add_assoc_long(&directives, "opcache.revalidate_freq", ZCG(accel_directives).revalidate_f…
797 …add_assoc_string(&directives, "opcache.preferred_memory_model", STRING_NOT_NULL(ZCG(accel_directiv…
798 …add_assoc_string(&directives, "opcache.blacklist_filename", STRING_NOT_NULL(ZCG(accel_directiv…
799 …add_assoc_long(&directives, "opcache.max_file_size", ZCG(accel_directives).max_file_siz…
800 …add_assoc_string(&directives, "opcache.error_log", STRING_NOT_NULL(ZCG(accel_directiv…
802 …add_assoc_bool(&directives, "opcache.protect_memory", ZCG(accel_directives).protect_memo…
803 …add_assoc_bool(&directives, "opcache.save_comments", ZCG(accel_directives).save_comment…
804 …add_assoc_bool(&directives, "opcache.record_warnings", ZCG(accel_directives).record_warni…
805 …add_assoc_bool(&directives, "opcache.enable_file_override", ZCG(accel_directives).file_overrid…
806 …add_assoc_long(&directives, "opcache.optimization_level", ZCG(accel_directives).optimization…
809 …add_assoc_string(&directives, "opcache.lockfile_path", STRING_NOT_NULL(ZCG(accel_directiv…
811 …add_assoc_string(&directives, "opcache.mmap_base", STRING_NOT_NULL(ZCG(accel_directiv…
814 …add_assoc_string(&directives, "opcache.file_cache", ZCG(accel_directives).file_…
815 …add_assoc_bool(&directives, "opcache.file_cache_only", ZCG(accel_directives).file_…
816 …add_assoc_bool(&directives, "opcache.file_cache_consistency_checks", ZCG(accel_directives).file_…
818 …add_assoc_bool(&directives, "opcache.file_cache_fallback", ZCG(accel_directives).file_…
821 …add_assoc_long(&directives, "opcache.file_update_protection", ZCG(accel_directives).file_update…
822 …add_assoc_long(&directives, "opcache.opt_debug_level", ZCG(accel_directives).opt_debug_l…
823 …add_assoc_string(&directives, "opcache.restrict_api", STRING_NOT_NULL(ZCG(accel_directi…
825 …add_assoc_bool(&directives, "opcache.huge_code_pages", ZCG(accel_directives).huge_code_p…
827 add_assoc_string(&directives, "opcache.preload", STRING_NOT_NULL(ZCG(accel_directives).preload));
829 …add_assoc_string(&directives, "opcache.preload_user", STRING_NOT_NULL(ZCG(accel_directives).preloa…
832 add_assoc_string(&directives, "opcache.cache_id", STRING_NOT_NULL(ZCG(accel_directives).cache_id));
835 add_assoc_string(&directives, "opcache.jit", JIT_G(options));
836 add_assoc_long(&directives, "opcache.jit_buffer_size", JIT_G(buffer_size));
837 add_assoc_long(&directives, "opcache.jit_debug", JIT_G(debug));
838 add_assoc_long(&directives, "opcache.jit_bisect_limit", JIT_G(bisect_limit));
839 add_assoc_long(&directives, "opcache.jit_blacklist_root_trace", JIT_G(blacklist_root_trace));
840 add_assoc_long(&directives, "opcache.jit_blacklist_side_trace", JIT_G(blacklist_side_trace));
841 add_assoc_long(&directives, "opcache.jit_hot_func", JIT_G(hot_func));
842 add_assoc_long(&directives, "opcache.jit_hot_loop", JIT_G(hot_loop));
843 add_assoc_long(&directives, "opcache.jit_hot_return", JIT_G(hot_return));
844 add_assoc_long(&directives, "opcache.jit_hot_side_exit", JIT_G(hot_side_exit));
845 add_assoc_long(&directives, "opcache.jit_max_exit_counters", JIT_G(max_exit_counters));
846 add_assoc_long(&directives, "opcache.jit_max_loop_unrolls", JIT_G(max_loop_unrolls));
847 add_assoc_long(&directives, "opcache.jit_max_polymorphic_calls", JIT_G(max_polymorphic_calls));
848 add_assoc_long(&directives, "opcache.jit_max_recursive_calls", JIT_G(max_recursive_calls));
849 add_assoc_long(&directives, "opcache.jit_max_recursive_returns", JIT_G(max_recursive_returns));
850 add_assoc_long(&directives, "opcache.jit_max_root_traces", JIT_G(max_root_traces));
851 add_assoc_long(&directives, "opcache.jit_max_side_traces", JIT_G(max_side_traces));
852 add_assoc_long(&directives, "opcache.jit_prof_threshold", JIT_G(prof_threshold));
853 add_assoc_long(&directives, "opcache.jit_max_trace_length", JIT_G(max_trace_length));
856 add_assoc_zval(return_value, "directives", &directives);