accel_directives   31 ext/opcache/Optimizer/zend_optimizer.c 	ZCG(accel_directives).optimization_level
accel_directives   80 ext/opcache/ZendAccelerator.c 		if (ZCG(accel_directives).protect_memory) { \
accel_directives   86 ext/opcache/ZendAccelerator.c 		if (ZCG(accel_directives).protect_memory) { \
accel_directives  193 ext/opcache/ZendAccelerator.c 	if ((((double) ZSMMG(wasted_shared_memory)) / ZCG(accel_directives).memory_consumption) >= ZCG(accel_directives).max_wasted_percentage) {
accel_directives  637 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).force_restart_timeout
accel_directives  640 ext/opcache/ZendAccelerator.c 		zend_accel_error(ACCEL_LOG_WARNING, "Forced restart at %d (after %d seconds), locked by %d", time(NULL), ZCG(accel_directives).force_restart_timeout, mem_usage_check.l_pid);
accel_directives  892 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).revalidate_freq &&
accel_directives  898 ext/opcache/ZendAccelerator.c 		persistent_script->dynamic_members.revalidate = ZCG(request_time) + ZCG(accel_directives).revalidate_freq;
accel_directives  934 ext/opcache/ZendAccelerator.c     if (ZCG(accel_directives).use_cwd &&
accel_directives 1088 ext/opcache/ZendAccelerator.c 			!ZCG(accel_directives).validate_timestamps ||
accel_directives 1172 ext/opcache/ZendAccelerator.c 			if (!ZCG(accel_directives).revalidate_path &&
accel_directives 1173 ext/opcache/ZendAccelerator.c 			    (!ZCG(accel_directives).validate_timestamps ||
accel_directives 1217 ext/opcache/ZendAccelerator.c 		if (!ZCG(accel_directives).revalidate_path &&
accel_directives 1339 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).validate_timestamps ||
accel_directives 1340 ext/opcache/ZendAccelerator.c 	    ZCG(accel_directives).file_update_protection ||
accel_directives 1341 ext/opcache/ZendAccelerator.c 	    ZCG(accel_directives).max_file_size > 0) {
accel_directives 1347 ext/opcache/ZendAccelerator.c 		timestamp = zend_get_file_handle_timestamp(file_handle, ZCG(accel_directives).max_file_size > 0 ? &size : NULL TSRMLS_CC);
accel_directives 1358 ext/opcache/ZendAccelerator.c 		if (ZCG(accel_directives).file_update_protection &&
accel_directives 1359 ext/opcache/ZendAccelerator.c 		    (ZCG(request_time) - ZCG(accel_directives).file_update_protection < timestamp)) {
accel_directives 1364 ext/opcache/ZendAccelerator.c 		if (ZCG(accel_directives).max_file_size > 0 && size > (size_t)ZCG(accel_directives).max_file_size) {
accel_directives 1443 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).validate_timestamps) {
accel_directives 1448 ext/opcache/ZendAccelerator.c 		new_persistent_script->dynamic_members.revalidate = ZCG(request_time) + ZCG(accel_directives).revalidate_freq;
accel_directives 1555 ext/opcache/ZendAccelerator.c 				if (!ZCG(accel_directives).revalidate_path &&
accel_directives 1578 ext/opcache/ZendAccelerator.c 	if (persistent_script && ZCG(accel_directives).validate_timestamps) {
accel_directives 1597 ext/opcache/ZendAccelerator.c 	if (persistent_script && ZCG(accel_directives).consistency_checks
accel_directives 1598 ext/opcache/ZendAccelerator.c 		&& persistent_script->dynamic_members.hits % ZCG(accel_directives).consistency_checks == 0) {
accel_directives 1882 ext/opcache/ZendAccelerator.c 				if (!ZCG(accel_directives).revalidate_path &&
accel_directives 1905 ext/opcache/ZendAccelerator.c 						if (key && !ZCG(accel_directives).revalidate_path) {
accel_directives 2045 ext/opcache/ZendAccelerator.c 			if (!ZCG(accel_directives).revalidate_path &&
accel_directives 2065 ext/opcache/ZendAccelerator.c 					if (key && !ZCG(accel_directives).revalidate_path) {
accel_directives 2157 ext/opcache/ZendAccelerator.c 				if (ZCG(accel_directives).interned_strings_buffer) {
accel_directives 2387 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).fast_shutdown) {
accel_directives 2447 ext/opcache/ZendAccelerator.c 		if (ZCG(accel_directives).enable_cli &&
accel_directives 2467 ext/opcache/ZendAccelerator.c 	zend_accel_hash_init(&ZCSG(hash), ZCG(accel_directives).max_accelerated_files);
accel_directives 2474 ext/opcache/ZendAccelerator.c 	zend_hash_init(&ZCSG(interned_strings), (ZCG(accel_directives).interned_strings_buffer * 1024 * 1024) / (sizeof(Bucket) + sizeof(Bucket*) + 8 /* average string length */), NULL, NULL, 1);
accel_directives 2475 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).interned_strings_buffer) {
accel_directives 2478 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_start) = zend_shared_alloc((ZCG(accel_directives).interned_strings_buffer * 1024 * 1024));
accel_directives 2483 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_end)   = ZCSG(interned_strings_start) + (ZCG(accel_directives).interned_strings_buffer * 1024 * 1024);
accel_directives 2501 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).interned_strings_buffer) {
accel_directives 2563 ext/opcache/ZendAccelerator.c 		if (!ZCG(accel_directives).enable_cli &&
accel_directives 2578 ext/opcache/ZendAccelerator.c 	switch (zend_shared_alloc_startup(ZCG(accel_directives).memory_consumption)) {
accel_directives 2691 ext/opcache/ZendAccelerator.c 	    ZCG(accel_directives).user_blacklist_filename && 
accel_directives 2692 ext/opcache/ZendAccelerator.c 	    *ZCG(accel_directives.user_blacklist_filename)) {
accel_directives 2694 ext/opcache/ZendAccelerator.c 		zend_accel_blacklist_load(&accel_blacklist, ZCG(accel_directives.user_blacklist_filename));
accel_directives 2726 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).interned_strings_buffer) {
accel_directives 2763 ext/opcache/ZendAccelerator.c 	if (ZCG(accel_directives).force_restart_timeout) {
accel_directives 2764 ext/opcache/ZendAccelerator.c 		ZCSG(force_restart_time) = zend_accel_get_time() + ZCG(accel_directives).force_restart_timeout;
accel_directives  259 ext/opcache/ZendAccelerator.h 	zend_accel_directives   accel_directives;
accel_directives  296 ext/opcache/shared_alloc_win32.c 	if (!ZCG(accel_directives).mmap_base || !*ZCG(accel_directives).mmap_base) {
accel_directives  321 ext/opcache/shared_alloc_win32.c 		char *s = ZCG(accel_directives).mmap_base;
accel_directives   39 ext/opcache/zend_accelerator_debug.c 	if (type > ZCG(accel_directives).log_verbosity_level) {
accel_directives   47 ext/opcache/zend_accelerator_debug.c 	if (!ZCG(accel_directives).error_log ||
accel_directives   48 ext/opcache/zend_accelerator_debug.c 	    !*ZCG(accel_directives).error_log ||
accel_directives   49 ext/opcache/zend_accelerator_debug.c 	    strcmp(ZCG(accel_directives).error_log, "stderr") == 0) {
accel_directives   53 ext/opcache/zend_accelerator_debug.c 		fLog = fopen(ZCG(accel_directives).error_log, "a+");
accel_directives   92 ext/opcache/zend_accelerator_module.c 	if (ZCG(accel_directives).restrict_api && *ZCG(accel_directives).restrict_api) {
accel_directives   93 ext/opcache/zend_accelerator_module.c 		int len = strlen(ZCG(accel_directives).restrict_api);
accel_directives   97 ext/opcache/zend_accelerator_module.c 		    memcmp(SG(request_info).path_translated, ZCG(accel_directives).restrict_api, len) != 0) {
accel_directives  256 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_BOOLEAN("opcache.use_cwd"            , "1", PHP_INI_SYSTEM, OnUpdateBool, accel_directives.use_cwd            , zend_accel_globals, accel_globals)
accel_directives  257 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_BOOLEAN("opcache.validate_timestamps", "1", PHP_INI_ALL   , OnUpdateBool, accel_directives.validate_timestamps, zend_accel_globals, accel_globals)
accel_directives  258 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_BOOLEAN("opcache.inherited_hack"     , "1", PHP_INI_SYSTEM, OnUpdateBool, accel_directives.inherited_hack     , zend_accel_globals, accel_globals)
accel_directives  259 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_BOOLEAN("opcache.dups_fix"           , "0", PHP_INI_ALL   , OnUpdateBool, accel_directives.ignore_dups        , zend_accel_globals, accel_globals)
accel_directives  260 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_BOOLEAN("opcache.revalidate_path"    , "0", PHP_INI_ALL   , OnUpdateBool, accel_directives.revalidate_path    , zend_accel_globals, accel_globals)
accel_directives  262 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.log_verbosity_level"   , "1"   , PHP_INI_SYSTEM, OnUpdateLong, accel_directives.log_verbosity_level,       zend_accel_globals, accel_globals)
accel_directives  263 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.memory_consumption"    , "64"  , PHP_INI_SYSTEM, OnUpdateMemoryConsumption,    accel_directives.memory_consumption,        zend_accel_globals, accel_globals)
accel_directives  265 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.interned_strings_buffer", "4"  , PHP_INI_SYSTEM, OnUpdateLong,                 accel_directives.interned_strings_buffer,   zend_accel_globals, accel_globals)
accel_directives  267 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.max_accelerated_files" , "2000", PHP_INI_SYSTEM, OnUpdateMaxAcceleratedFiles,	 accel_directives.max_accelerated_files,     zend_accel_globals, accel_globals)
accel_directives  268 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.max_wasted_percentage" , "5"   , PHP_INI_SYSTEM, OnUpdateMaxWastedPercentage,	 accel_directives.max_wasted_percentage,     zend_accel_globals, accel_globals)
accel_directives  269 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.consistency_checks"    , "0"   , PHP_INI_ALL   , OnUpdateLong,	             accel_directives.consistency_checks,        zend_accel_globals, accel_globals)
accel_directives  270 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.force_restart_timeout" , "180" , PHP_INI_SYSTEM, OnUpdateLong,	             accel_directives.force_restart_timeout,     zend_accel_globals, accel_globals)
accel_directives  271 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.revalidate_freq"       , "2"   , PHP_INI_ALL   , OnUpdateLong,	             accel_directives.revalidate_freq,           zend_accel_globals, accel_globals)
accel_directives  272 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.file_update_protection", "2"   , PHP_INI_ALL   , OnUpdateLong,                accel_directives.file_update_protection,    zend_accel_globals, accel_globals)
accel_directives  273 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.preferred_memory_model", ""    , PHP_INI_SYSTEM, OnUpdateStringUnempty,       accel_directives.memory_model,              zend_accel_globals, accel_globals)
accel_directives  274 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.blacklist_filename"    , ""    , PHP_INI_SYSTEM, OnUpdateString,	             accel_directives.user_blacklist_filename,   zend_accel_globals, accel_globals)
accel_directives  275 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.max_file_size"         , "0"   , PHP_INI_SYSTEM, OnUpdateLong,	             accel_directives.max_file_size,             zend_accel_globals, accel_globals)
accel_directives  277 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.protect_memory"        , "0"  , PHP_INI_SYSTEM, OnUpdateBool,                  accel_directives.protect_memory,            zend_accel_globals, accel_globals)
accel_directives  278 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.save_comments"         , "1"  , PHP_INI_SYSTEM, OnUpdateBool,                  accel_directives.save_comments,             zend_accel_globals, accel_globals)
accel_directives  279 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.load_comments"         , "1"  , PHP_INI_ALL,    OnUpdateBool,                  accel_directives.load_comments,             zend_accel_globals, accel_globals)
accel_directives  280 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.fast_shutdown"         , "0"  , PHP_INI_SYSTEM, OnUpdateBool,                  accel_directives.fast_shutdown,             zend_accel_globals, accel_globals)
accel_directives  282 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.optimization_level"    , DEFAULT_OPTIMIZATION_LEVEL , PHP_INI_SYSTEM, OnUpdateLong, accel_directives.optimization_level,   zend_accel_globals, accel_globals)
accel_directives  283 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_BOOLEAN("opcache.enable_file_override"	, "0"   , PHP_INI_SYSTEM, OnUpdateBool,              accel_directives.file_override_enabled,     zend_accel_globals, accel_globals)
accel_directives  284 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_BOOLEAN("opcache.enable_cli"             , "0"   , PHP_INI_SYSTEM, OnUpdateBool,              accel_directives.enable_cli,                zend_accel_globals, accel_globals)
accel_directives  285 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.error_log"                , ""    , PHP_INI_SYSTEM, OnUpdateString,	         accel_directives.error_log,                 zend_accel_globals, accel_globals)
accel_directives  286 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.restrict_api"             , ""    , PHP_INI_SYSTEM, OnUpdateString,	         accel_directives.restrict_api,              zend_accel_globals, accel_globals)
accel_directives  289 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.mmap_base", NULL, PHP_INI_SYSTEM,	OnUpdateString,	                             accel_directives.mmap_base,                 zend_accel_globals, accel_globals)
accel_directives  327 ext/opcache/zend_accelerator_module.c 				(!ZCG(accel_directives).validate_timestamps ||
accel_directives  335 ext/opcache/zend_accelerator_module.c 			(!ZCG(accel_directives).validate_timestamps ||
accel_directives  396 ext/opcache/zend_accelerator_module.c 	if (ZCG(enabled) && accel_startup_ok && ZCG(accel_directives).file_override_enabled) {
accel_directives  431 ext/opcache/zend_accelerator_module.c 	if (ZCG(enabled) && accel_startup_ok && ZCSG(accelerator_enabled) && ZCG(accel_directives).optimization_level) {
accel_directives  447 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCG(accel_directives).memory_consumption-zend_shared_alloc_get_free_memory()-ZSMMG(wasted_shared_memory));
accel_directives  536 ext/opcache/zend_accelerator_module.c 			if (ZCG(accel_directives).validate_timestamps) {
accel_directives  584 ext/opcache/zend_accelerator_module.c 	add_assoc_long(memory_usage, "used_memory", ZCG(accel_directives).memory_consumption-zend_shared_alloc_get_free_memory()-ZSMMG(wasted_shared_memory));
accel_directives  587 ext/opcache/zend_accelerator_module.c 	add_assoc_double(memory_usage, "current_wasted_percentage", (((double) ZSMMG(wasted_shared_memory))/ZCG(accel_directives).memory_consumption)*100.0);
accel_directives  663 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.enable_cli",          ZCG(accel_directives).enable_cli);
accel_directives  664 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.use_cwd",             ZCG(accel_directives).use_cwd);
accel_directives  665 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.validate_timestamps", ZCG(accel_directives).validate_timestamps);
accel_directives  666 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.inherited_hack",      ZCG(accel_directives).inherited_hack);
accel_directives  667 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.dups_fix",            ZCG(accel_directives).ignore_dups);
accel_directives  668 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.revalidate_path",     ZCG(accel_directives).revalidate_path);
accel_directives  670 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,   "opcache.log_verbosity_level",    ZCG(accel_directives).log_verbosity_level);
accel_directives  671 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,	 "opcache.memory_consumption",     ZCG(accel_directives).memory_consumption);
accel_directives  673 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,	 "opcache.interned_strings_buffer",ZCG(accel_directives).interned_strings_buffer);
accel_directives  675 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.max_accelerated_files",  ZCG(accel_directives).max_accelerated_files);
accel_directives  676 ext/opcache/zend_accelerator_module.c 	add_assoc_double(directives, "opcache.max_wasted_percentage",  ZCG(accel_directives).max_wasted_percentage);
accel_directives  677 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.consistency_checks",     ZCG(accel_directives).consistency_checks);
accel_directives  678 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.force_restart_timeout",  ZCG(accel_directives).force_restart_timeout);
accel_directives  679 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.revalidate_freq",        ZCG(accel_directives).revalidate_freq);
accel_directives  680 ext/opcache/zend_accelerator_module.c 	add_assoc_string(directives, "opcache.preferred_memory_model", STRING_NOT_NULL(ZCG(accel_directives).memory_model), 1);
accel_directives  681 ext/opcache/zend_accelerator_module.c 	add_assoc_string(directives, "opcache.blacklist_filename",     STRING_NOT_NULL(ZCG(accel_directives).user_blacklist_filename), 1);
accel_directives  682 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,   "opcache.max_file_size",          ZCG(accel_directives).max_file_size);
accel_directives  683 ext/opcache/zend_accelerator_module.c 	add_assoc_string(directives, "opcache.error_log",              STRING_NOT_NULL(ZCG(accel_directives).error_log), 1);
accel_directives  685 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.protect_memory",         ZCG(accel_directives).protect_memory);
accel_directives  686 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.save_comments",          ZCG(accel_directives).save_comments);
accel_directives  687 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.load_comments",          ZCG(accel_directives).load_comments);
accel_directives  688 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.fast_shutdown",          ZCG(accel_directives).fast_shutdown);
accel_directives  689 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.enable_file_override",   ZCG(accel_directives).file_override_enabled);
accel_directives  690 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.optimization_level",     ZCG(accel_directives).optimization_level);
accel_directives  643 ext/opcache/zend_accelerator_util_funcs.c 			if (ZCG(accel_directives).load_comments) {
accel_directives  764 ext/opcache/zend_accelerator_util_funcs.c 		if (ZCG(accel_directives).load_comments) {
accel_directives  962 ext/opcache/zend_accelerator_util_funcs.c 	if (zend_hash_unique_copy(target, source, pCopyConstructor, sizeof(zend_class_entry*), ZCG(accel_directives).ignore_dups, (void**)&pce1, (void**)&pce2) != SUCCESS) {
accel_directives  324 ext/opcache/zend_persist.c 					if (main_persistent_script && ZCG(accel_directives).inherited_hack) {
accel_directives  425 ext/opcache/zend_persist.c 		if (ZCG(accel_directives).save_comments) {
accel_directives  474 ext/opcache/zend_persist.c 		if (ZCG(accel_directives).save_comments) {
accel_directives  529 ext/opcache/zend_persist.c 			if (ZCG(accel_directives).save_comments) {
accel_directives  232 ext/opcache/zend_persist_calc.c 	if (ZCG(accel_directives).save_comments && op_array->doc_comment) {
accel_directives  256 ext/opcache/zend_persist_calc.c 	if (ZCG(accel_directives).save_comments && prop->doc_comment) {
accel_directives  301 ext/opcache/zend_persist_calc.c 		if (ZCG(accel_directives).save_comments && ZEND_CE_DOC_COMMENT(ce)) {
accel_directives  170 ext/opcache/zend_shared_alloc.c 	if (ZCG(accel_directives).memory_model && ZCG(accel_directives).memory_model[0]) {
accel_directives  171 ext/opcache/zend_shared_alloc.c 		char *model = ZCG(accel_directives).memory_model;
accel_directives  173 ext/opcache/zend_shared_alloc.c 		if (strncmp(ZCG(accel_directives).memory_model, "cgi", sizeof("cgi")) == 0) {