statistics        555 ext/opcache/zend_accelerator_module.c 	zval *memory_usage,*statistics,*scripts;
statistics        605 ext/opcache/zend_accelerator_module.c 	MAKE_STD_ZVAL(statistics);
statistics        606 ext/opcache/zend_accelerator_module.c 	array_init(statistics);
statistics        607 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "num_cached_scripts", ZCSG(hash).num_direct_entries);
statistics        608 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "num_cached_keys",    ZCSG(hash).num_entries);
statistics        609 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "max_cached_keys",    ZCSG(hash).max_num_entries);
statistics        610 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "hits", ZCSG(hits));
statistics        611 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "start_time", ZCSG(start_time));
statistics        612 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "last_restart_time", ZCSG(last_restart_time));
statistics        613 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "oom_restarts", ZCSG(oom_restarts));
statistics        614 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "hash_restarts", ZCSG(hash_restarts));
statistics        615 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "manual_restarts", ZCSG(manual_restarts));
statistics        616 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "misses", ZSMMG(memory_exhausted)?ZCSG(misses):ZCSG(misses)-ZCSG(blacklist_misses));
statistics        617 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "blacklist_misses", ZCSG(blacklist_misses));
statistics        619 ext/opcache/zend_accelerator_module.c 	add_assoc_double(statistics, "blacklist_miss_ratio", reqs?(((double) ZCSG(blacklist_misses))/reqs)*100.0:0);
statistics        620 ext/opcache/zend_accelerator_module.c 	add_assoc_double(statistics, "opcache_hit_rate", reqs?(((double) ZCSG(hits))/reqs)*100.0:0);
statistics        621 ext/opcache/zend_accelerator_module.c 	add_assoc_zval(return_value, "opcache_statistics", statistics);