directives        182 Zend/zend_ini.c 	HashTable *directives = registered_zend_ini_directives;
directives        194 Zend/zend_ini.c 	if (directives != EG(ini_directives)) {
directives        195 Zend/zend_ini.c 		directives = EG(ini_directives);
directives        201 Zend/zend_ini.c 		if (zend_hash_add(directives, p->name, p->name_length, (void*)p, sizeof(zend_ini_entry), (void **) &hashed_ini_entry) == FAILURE) {
directives        642 ext/opcache/zend_accelerator_module.c 	zval *directives,*version,*blacklist;
directives        660 ext/opcache/zend_accelerator_module.c 	MAKE_STD_ZVAL(directives);
directives        661 ext/opcache/zend_accelerator_module.c 	array_init(directives);
directives        662 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.enable",              ZCG(enabled));
directives        663 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.enable_cli",          ZCG(accel_directives).enable_cli);
directives        664 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.use_cwd",             ZCG(accel_directives).use_cwd);
directives        665 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.validate_timestamps", ZCG(accel_directives).validate_timestamps);
directives        666 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.inherited_hack",      ZCG(accel_directives).inherited_hack);
directives        667 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.dups_fix",            ZCG(accel_directives).ignore_dups);
directives        668 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives, "opcache.revalidate_path",     ZCG(accel_directives).revalidate_path);
directives        670 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,   "opcache.log_verbosity_level",    ZCG(accel_directives).log_verbosity_level);
directives        671 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,	 "opcache.memory_consumption",     ZCG(accel_directives).memory_consumption);
directives        673 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,	 "opcache.interned_strings_buffer",ZCG(accel_directives).interned_strings_buffer);
directives        675 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.max_accelerated_files",  ZCG(accel_directives).max_accelerated_files);
directives        676 ext/opcache/zend_accelerator_module.c 	add_assoc_double(directives, "opcache.max_wasted_percentage",  ZCG(accel_directives).max_wasted_percentage);
directives        677 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.consistency_checks",     ZCG(accel_directives).consistency_checks);
directives        678 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.force_restart_timeout",  ZCG(accel_directives).force_restart_timeout);
directives        679 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.revalidate_freq",        ZCG(accel_directives).revalidate_freq);
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);
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);
directives        682 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives,   "opcache.max_file_size",          ZCG(accel_directives).max_file_size);
directives        683 ext/opcache/zend_accelerator_module.c 	add_assoc_string(directives, "opcache.error_log",              STRING_NOT_NULL(ZCG(accel_directives).error_log), 1);
directives        685 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.protect_memory",         ZCG(accel_directives).protect_memory);
directives        686 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.save_comments",          ZCG(accel_directives).save_comments);
directives        687 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.load_comments",          ZCG(accel_directives).load_comments);
directives        688 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.fast_shutdown",          ZCG(accel_directives).fast_shutdown);
directives        689 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(directives,   "opcache.enable_file_override",   ZCG(accel_directives).file_override_enabled);
directives        690 ext/opcache/zend_accelerator_module.c 	add_assoc_long(directives, 	 "opcache.optimization_level",     ZCG(accel_directives).optimization_level);
directives        692 ext/opcache/zend_accelerator_module.c 	add_assoc_zval(return_value, "directives", directives);
directives       2368 main/main.c    			const char *directives[16]; /* Remember to change this if the number of directives change */
directives       2369 main/main.c    		} directives[2] = {
directives       2406 main/main.c    				const char **p = directives[i].directives;
directives       2412 main/main.c    						zend_error(directives[i].error_level, directives[i].phrase, *p);