Lines Matching refs:directives

776 	zval directives, version, blacklist;  local
789 array_init(&directives);
790 add_assoc_bool(&directives, "opcache.enable", ZCG(enabled));
791 add_assoc_bool(&directives, "opcache.enable_cli", ZCG(accel_directives).enable_cli);
792 add_assoc_bool(&directives, "opcache.use_cwd", ZCG(accel_directives).use_cwd);
793 …add_assoc_bool(&directives, "opcache.validate_timestamps", ZCG(accel_directives).validate_timestam…
794 …add_assoc_bool(&directives, "opcache.validate_permission", ZCG(accel_directives).validate_permissi…
796 add_assoc_bool(&directives, "opcache.validate_root", ZCG(accel_directives).validate_root);
798 add_assoc_bool(&directives, "opcache.dups_fix", ZCG(accel_directives).ignore_dups);
799 add_assoc_bool(&directives, "opcache.revalidate_path", ZCG(accel_directives).revalidate_path);
801 …add_assoc_long(&directives, "opcache.log_verbosity_level", ZCG(accel_directives).log_verbosit…
802 …add_assoc_long(&directives, "opcache.memory_consumption", ZCG(accel_directives).memory_consum…
803 …add_assoc_long(&directives, "opcache.interned_strings_buffer",ZCG(accel_directives).interned_stri…
804 …add_assoc_long(&directives, "opcache.max_accelerated_files", ZCG(accel_directives).max_accelera…
805 …add_assoc_double(&directives, "opcache.max_wasted_percentage", ZCG(accel_directives).max_wasted_p…
806 …add_assoc_long(&directives, "opcache.force_restart_timeout", ZCG(accel_directives).force_restar…
807 …add_assoc_long(&directives, "opcache.revalidate_freq", ZCG(accel_directives).revalidate_f…
808 …add_assoc_string(&directives, "opcache.preferred_memory_model", STRING_NOT_NULL(ZCG(accel_directiv…
809 …add_assoc_string(&directives, "opcache.blacklist_filename", STRING_NOT_NULL(ZCG(accel_directiv…
810 …add_assoc_long(&directives, "opcache.max_file_size", ZCG(accel_directives).max_file_siz…
811 …add_assoc_string(&directives, "opcache.error_log", STRING_NOT_NULL(ZCG(accel_directiv…
813 …add_assoc_bool(&directives, "opcache.protect_memory", ZCG(accel_directives).protect_memo…
814 …add_assoc_bool(&directives, "opcache.save_comments", ZCG(accel_directives).save_comment…
815 …add_assoc_bool(&directives, "opcache.record_warnings", ZCG(accel_directives).record_warni…
816 …add_assoc_bool(&directives, "opcache.enable_file_override", ZCG(accel_directives).file_overrid…
817 …add_assoc_long(&directives, "opcache.optimization_level", ZCG(accel_directives).optimization…
820 …add_assoc_string(&directives, "opcache.lockfile_path", STRING_NOT_NULL(ZCG(accel_directiv…
822 …add_assoc_string(&directives, "opcache.mmap_base", STRING_NOT_NULL(ZCG(accel_directiv…
825 …add_assoc_string(&directives, "opcache.file_cache", ZCG(accel_directives).file_…
826 …add_assoc_bool(&directives, "opcache.file_cache_only", ZCG(accel_directives).file_…
827 …add_assoc_bool(&directives, "opcache.file_cache_consistency_checks", ZCG(accel_directives).file_…
829 …add_assoc_bool(&directives, "opcache.file_cache_fallback", ZCG(accel_directives).file_…
832 …add_assoc_long(&directives, "opcache.file_update_protection", ZCG(accel_directives).file_update…
833 …add_assoc_long(&directives, "opcache.opt_debug_level", ZCG(accel_directives).opt_debug_l…
834 …add_assoc_string(&directives, "opcache.restrict_api", STRING_NOT_NULL(ZCG(accel_directi…
836 …add_assoc_bool(&directives, "opcache.huge_code_pages", ZCG(accel_directives).huge_code_p…
838 add_assoc_string(&directives, "opcache.preload", STRING_NOT_NULL(ZCG(accel_directives).preload));
840 …add_assoc_string(&directives, "opcache.preload_user", STRING_NOT_NULL(ZCG(accel_directives).preloa…
843 add_assoc_string(&directives, "opcache.cache_id", STRING_NOT_NULL(ZCG(accel_directives).cache_id));
846 add_assoc_string(&directives, "opcache.jit", JIT_G(options));
847 add_assoc_long(&directives, "opcache.jit_buffer_size", JIT_G(buffer_size));
848 add_assoc_long(&directives, "opcache.jit_debug", JIT_G(debug));
849 add_assoc_long(&directives, "opcache.jit_bisect_limit", JIT_G(bisect_limit));
850 add_assoc_long(&directives, "opcache.jit_blacklist_root_trace", JIT_G(blacklist_root_trace));
851 add_assoc_long(&directives, "opcache.jit_blacklist_side_trace", JIT_G(blacklist_side_trace));
852 add_assoc_long(&directives, "opcache.jit_hot_func", JIT_G(hot_func));
853 add_assoc_long(&directives, "opcache.jit_hot_loop", JIT_G(hot_loop));
854 add_assoc_long(&directives, "opcache.jit_hot_return", JIT_G(hot_return));
855 add_assoc_long(&directives, "opcache.jit_hot_side_exit", JIT_G(hot_side_exit));
856 add_assoc_long(&directives, "opcache.jit_max_exit_counters", JIT_G(max_exit_counters));
857 add_assoc_long(&directives, "opcache.jit_max_loop_unrolls", JIT_G(max_loop_unrolls));
858 add_assoc_long(&directives, "opcache.jit_max_polymorphic_calls", JIT_G(max_polymorphic_calls));
859 add_assoc_long(&directives, "opcache.jit_max_recursive_calls", JIT_G(max_recursive_calls));
860 add_assoc_long(&directives, "opcache.jit_max_recursive_returns", JIT_G(max_recursive_returns));
861 add_assoc_long(&directives, "opcache.jit_max_root_traces", JIT_G(max_root_traces));
862 add_assoc_long(&directives, "opcache.jit_max_side_traces", JIT_G(max_side_traces));
863 add_assoc_long(&directives, "opcache.jit_prof_threshold", JIT_G(prof_threshold));
864 add_assoc_long(&directives, "opcache.jit_max_trace_length", JIT_G(max_trace_length));
867 add_assoc_zval(return_value, "directives", &directives);