Lines Matching refs:add_assoc_long

561 			add_assoc_long(&persistent_script_report, "hits", (zend_long)script->dynamic_members.hits);
562add_assoc_long(&persistent_script_report, "memory_consumption", script->dynamic_members.memory_con…
568add_assoc_long(&persistent_script_report, "last_used_timestamp", script->dynamic_members.last_used…
570 add_assoc_long(&persistent_script_report, "timestamp", (zend_long)script->timestamp);
621add_assoc_long(&memory_usage, "used_memory", ZCG(accel_directives).memory_consumption-zend_shared_…
622 add_assoc_long(&memory_usage, "free_memory", zend_shared_alloc_get_free_memory());
623 add_assoc_long(&memory_usage, "wasted_memory", ZSMMG(wasted_shared_memory));
631add_assoc_long(&interned_strings_usage, "buffer_size", (char*)ZCSG(interned_strings).end - (char*)…
632add_assoc_long(&interned_strings_usage, "used_memory", (char*)ZCSG(interned_strings).top - (char*)…
633add_assoc_long(&interned_strings_usage, "free_memory", (char*)ZCSG(interned_strings).end - (char*)…
634add_assoc_long(&interned_strings_usage, "number_of_strings", ZCSG(interned_strings).nNumOfElements…
640 add_assoc_long(&statistics, "num_cached_scripts", ZCSG(hash).num_direct_entries);
641 add_assoc_long(&statistics, "num_cached_keys", ZCSG(hash).num_entries);
642 add_assoc_long(&statistics, "max_cached_keys", ZCSG(hash).max_num_entries);
643 add_assoc_long(&statistics, "hits", (zend_long)ZCSG(hits));
644 add_assoc_long(&statistics, "start_time", ZCSG(start_time));
645 add_assoc_long(&statistics, "last_restart_time", ZCSG(last_restart_time));
646 add_assoc_long(&statistics, "oom_restarts", ZCSG(oom_restarts));
647 add_assoc_long(&statistics, "hash_restarts", ZCSG(hash_restarts));
648 add_assoc_long(&statistics, "manual_restarts", ZCSG(manual_restarts));
649add_assoc_long(&statistics, "misses", ZSMMG(memory_exhausted)?ZCSG(misses):ZCSG(misses)-ZCSG(black…
650 add_assoc_long(&statistics, "blacklist_misses", ZCSG(blacklist_misses));
659add_assoc_long(&statistics, "memory_consumption", ZCSG(preload_script)->dynamic_members.memory_con…
744add_assoc_long(&directives, "opcache.log_verbosity_level", ZCG(accel_directives).log_verbosit…
745add_assoc_long(&directives, "opcache.memory_consumption", ZCG(accel_directives).memory_consum…
746add_assoc_long(&directives, "opcache.interned_strings_buffer",ZCG(accel_directives).interned_stri…
747add_assoc_long(&directives, "opcache.max_accelerated_files", ZCG(accel_directives).max_accelera…
749add_assoc_long(&directives, "opcache.consistency_checks", ZCG(accel_directives).consistency_…
750add_assoc_long(&directives, "opcache.force_restart_timeout", ZCG(accel_directives).force_restar…
751add_assoc_long(&directives, "opcache.revalidate_freq", ZCG(accel_directives).revalidate_f…
754add_assoc_long(&directives, "opcache.max_file_size", ZCG(accel_directives).max_file_siz…
761add_assoc_long(&directives, "opcache.optimization_level", ZCG(accel_directives).optimization…
776add_assoc_long(&directives, "opcache.file_update_protection", ZCG(accel_directives).file_update…
777add_assoc_long(&directives, "opcache.opt_debug_level", ZCG(accel_directives).opt_debug_l…
791 add_assoc_long(&directives, "opcache.jit_buffer_size", JIT_G(buffer_size));
792 add_assoc_long(&directives, "opcache.jit_debug", JIT_G(debug));
793 add_assoc_long(&directives, "opcache.jit_bisect_limit", JIT_G(bisect_limit));
794 add_assoc_long(&directives, "opcache.jit_blacklist_root_trace", JIT_G(blacklist_root_trace));
795 add_assoc_long(&directives, "opcache.jit_blacklist_side_trace", JIT_G(blacklist_side_trace));
796 add_assoc_long(&directives, "opcache.jit_hot_func", JIT_G(hot_func));
797 add_assoc_long(&directives, "opcache.jit_hot_loop", JIT_G(hot_loop));
798 add_assoc_long(&directives, "opcache.jit_hot_return", JIT_G(hot_return));
799 add_assoc_long(&directives, "opcache.jit_hot_side_exit", JIT_G(hot_side_exit));
800 add_assoc_long(&directives, "opcache.jit_max_exit_counters", JIT_G(max_exit_counters));
801 add_assoc_long(&directives, "opcache.jit_max_loop_unrolls", JIT_G(max_loop_unrolls));
802 add_assoc_long(&directives, "opcache.jit_max_polymorphic_calls", JIT_G(max_polymorphic_calls));
803 add_assoc_long(&directives, "opcache.jit_max_recursive_calls", JIT_G(max_recursive_calls));
804 add_assoc_long(&directives, "opcache.jit_max_recursive_returns", JIT_G(max_recursive_returns));
805 add_assoc_long(&directives, "opcache.jit_max_root_traces", JIT_G(max_root_traces));
806 add_assoc_long(&directives, "opcache.jit_max_side_traces", JIT_G(max_side_traces));
807 add_assoc_long(&directives, "opcache.jit_prof_threshold", JIT_G(prof_threshold));