statistics        584 ext/opcache/zend_accelerator_module.c 	zval memory_usage, statistics, scripts;
statistics        638 ext/opcache/zend_accelerator_module.c 	array_init(&statistics);
statistics        639 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "num_cached_scripts", ZCSG(hash).num_direct_entries);
statistics        640 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "num_cached_keys",    ZCSG(hash).num_entries);
statistics        641 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "max_cached_keys",    ZCSG(hash).max_num_entries);
statistics        642 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "hits", (zend_long)ZCSG(hits));
statistics        643 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "start_time", ZCSG(start_time));
statistics        644 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "last_restart_time", ZCSG(last_restart_time));
statistics        645 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "oom_restarts", ZCSG(oom_restarts));
statistics        646 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "hash_restarts", ZCSG(hash_restarts));
statistics        647 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "manual_restarts", ZCSG(manual_restarts));
statistics        648 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "misses", ZSMMG(memory_exhausted)?ZCSG(misses):ZCSG(misses)-ZCSG(blacklist_misses));
statistics        649 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&statistics, "blacklist_misses", ZCSG(blacklist_misses));
statistics        651 ext/opcache/zend_accelerator_module.c 	add_assoc_double(&statistics, "blacklist_miss_ratio", reqs?(((double) ZCSG(blacklist_misses))/reqs)*100.0:0);
statistics        652 ext/opcache/zend_accelerator_module.c 	add_assoc_double(&statistics, "opcache_hit_rate", reqs?(((double) ZCSG(hits))/reqs)*100.0:0);
statistics        653 ext/opcache/zend_accelerator_module.c 	add_assoc_zval(return_value, "opcache_statistics", &statistics);