directives        216 Zend/zend_ini.c 	HashTable *directives = registered_zend_ini_directives;
directives        227 Zend/zend_ini.c 	if (directives != EG(ini_directives)) {
directives        228 Zend/zend_ini.c 		directives = EG(ini_directives);
directives        248 Zend/zend_ini.c 		if (zend_hash_add_ptr(directives, p->name, (void*)p) == NULL) {
directives        673 ext/opcache/zend_accelerator_module.c 	zval directives, version, blacklist;
directives        686 ext/opcache/zend_accelerator_module.c 	array_init(&directives);
directives        687 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives, "opcache.enable",              ZCG(enabled));
directives        688 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives, "opcache.enable_cli",          ZCG(accel_directives).enable_cli);
directives        689 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives, "opcache.use_cwd",             ZCG(accel_directives).use_cwd);
directives        690 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives, "opcache.validate_timestamps", ZCG(accel_directives).validate_timestamps);
directives        691 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives, "opcache.inherited_hack",      ZCG(accel_directives).inherited_hack);
directives        692 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives, "opcache.dups_fix",            ZCG(accel_directives).ignore_dups);
directives        693 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives, "opcache.revalidate_path",     ZCG(accel_directives).revalidate_path);
directives        695 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives,   "opcache.log_verbosity_level",    ZCG(accel_directives).log_verbosity_level);
directives        696 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives,	 "opcache.memory_consumption",     ZCG(accel_directives).memory_consumption);
directives        697 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives,	 "opcache.interned_strings_buffer",ZCG(accel_directives).interned_strings_buffer);
directives        698 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives, 	 "opcache.max_accelerated_files",  ZCG(accel_directives).max_accelerated_files);
directives        699 ext/opcache/zend_accelerator_module.c 	add_assoc_double(&directives, "opcache.max_wasted_percentage",  ZCG(accel_directives).max_wasted_percentage);
directives        700 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives, 	 "opcache.consistency_checks",     ZCG(accel_directives).consistency_checks);
directives        701 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives, 	 "opcache.force_restart_timeout",  ZCG(accel_directives).force_restart_timeout);
directives        702 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives, 	 "opcache.revalidate_freq",        ZCG(accel_directives).revalidate_freq);
directives        703 ext/opcache/zend_accelerator_module.c 	add_assoc_string(&directives, "opcache.preferred_memory_model", STRING_NOT_NULL(ZCG(accel_directives).memory_model));
directives        704 ext/opcache/zend_accelerator_module.c 	add_assoc_string(&directives, "opcache.blacklist_filename",     STRING_NOT_NULL(ZCG(accel_directives).user_blacklist_filename));
directives        705 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives,   "opcache.max_file_size",          ZCG(accel_directives).max_file_size);
directives        706 ext/opcache/zend_accelerator_module.c 	add_assoc_string(&directives, "opcache.error_log",              STRING_NOT_NULL(ZCG(accel_directives).error_log));
directives        708 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives,   "opcache.protect_memory",         ZCG(accel_directives).protect_memory);
directives        709 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives,   "opcache.save_comments",          ZCG(accel_directives).save_comments);
directives        710 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives,   "opcache.fast_shutdown",          ZCG(accel_directives).fast_shutdown);
directives        711 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives,   "opcache.enable_file_override",   ZCG(accel_directives).file_override_enabled);
directives        712 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives, 	 "opcache.optimization_level",     ZCG(accel_directives).optimization_level);
directives        715 ext/opcache/zend_accelerator_module.c 	add_assoc_string(&directives, "opcache.file_cache",                    ZCG(accel_directives).file_cache ? ZCG(accel_directives).file_cache : "");
directives        716 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives,   "opcache.file_cache_only",               ZCG(accel_directives).file_cache_only);
directives        717 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(&directives,   "opcache.file_cache_consistency_checks", ZCG(accel_directives).file_cache_consistency_checks);
directives        720 ext/opcache/zend_accelerator_module.c 	add_assoc_zval(return_value, "directives", &directives);
directives       2246 main/main.c    			const char *directives[17]; /* Remember to change this if the number of directives change */
directives       2247 main/main.c    		} directives[2] = {
directives       2285 main/main.c    				const char **p = directives[i].directives;
directives       2291 main/main.c    						zend_error(directives[i].error_level, directives[i].phrase, *p);