stage              80 Zend/zend.c    	OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             117 Zend/zend.c    	if (stage != ZEND_INI_STAGE_STARTUP &&
stage             118 Zend/zend.c    	    stage != ZEND_INI_STAGE_SHUTDOWN &&
stage              49 Zend/zend_ini.c static int zend_restore_ini_entry_cb(zend_ini_entry *ini_entry, int stage) /* {{{ */
stage              59 Zend/zend_ini.c 				result = ini_entry->on_modify(ini_entry, ini_entry->orig_value, ini_entry->mh_arg1, ini_entry->mh_arg2, ini_entry->mh_arg3, stage);
stage              62 Zend/zend_ini.c 		if (stage == ZEND_INI_STAGE_RUNTIME && result == FAILURE) {
stage             283 Zend/zend_ini.c 	int stage = (int)(zend_intptr_t)arg;
stage             286 Zend/zend_ini.c 		p->on_modify(p, p->value, p->mh_arg1, p->mh_arg2, p->mh_arg3, stage);
stage             292 Zend/zend_ini.c ZEND_API void zend_ini_refresh_caches(int stage) /* {{{ */
stage             294 Zend/zend_ini.c 	zend_hash_apply_with_argument(EG(ini_directives), zend_ini_refresh_cache, (void *)(zend_intptr_t) stage);
stage             299 Zend/zend_ini.c ZEND_API int zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int stage) /* {{{ */
stage             302 Zend/zend_ini.c 	return zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0);
stage             306 Zend/zend_ini.c ZEND_API int zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage) /* {{{ */
stage             311 Zend/zend_ini.c 	new_value = zend_string_init(value, value_length, stage != ZEND_INI_STAGE_RUNTIME);
stage             312 Zend/zend_ini.c 	ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0);
stage             318 Zend/zend_ini.c ZEND_API int zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int force_change) /* {{{ */
stage             323 Zend/zend_ini.c 	new_value = zend_string_init(value, value_length, stage != ZEND_INI_STAGE_RUNTIME);
stage             324 Zend/zend_ini.c 	ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, force_change);
stage             330 Zend/zend_ini.c ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, int stage, int force_change) /* {{{ */
stage             344 Zend/zend_ini.c 	if (stage == ZEND_INI_STAGE_ACTIVATE && modify_type == ZEND_INI_SYSTEM) {
stage             368 Zend/zend_ini.c 		|| ini_entry->on_modify(ini_entry, duplicate, ini_entry->mh_arg1, ini_entry->mh_arg2, ini_entry->mh_arg3, stage) == SUCCESS) {
stage             382 Zend/zend_ini.c ZEND_API int zend_restore_ini_entry(zend_string *name, int stage) /* {{{ */
stage             387 Zend/zend_ini.c 		(stage == ZEND_INI_STAGE_RUNTIME && (ini_entry->modifiable & ZEND_INI_USER) == 0)) {
stage             392 Zend/zend_ini.c 		if (zend_restore_ini_entry_cb(ini_entry, stage) == 0) {
stage              30 Zend/zend_ini.h #define ZEND_INI_MH(name) int name(zend_ini_entry *entry, zend_string *new_value, void *mh_arg1, void *mh_arg2, void *mh_arg3, int stage)
stage              76 Zend/zend_ini.h ZEND_API void zend_ini_refresh_caches(int stage);
stage              77 Zend/zend_ini.h ZEND_API int zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int stage);
stage              78 Zend/zend_ini.h ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, int stage, int force_change);
stage              79 Zend/zend_ini.h ZEND_API int zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage);
stage              80 Zend/zend_ini.h ZEND_API int zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int force_change);
stage              81 Zend/zend_ini.h ZEND_API int zend_restore_ini_entry(zend_string *name, int stage);
stage             947 ext/date/php_date.c 	if (OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage) == FAILURE) {
stage             952 ext/date/php_date.c 	if (stage == PHP_INI_STAGE_RUNTIME) {
stage             492 ext/dba/dba.c  		return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             502 ext/dba/dba.c  	return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             176 ext/exif/exif.c 	return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             191 ext/exif/exif.c 	return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             235 ext/iconv/iconv.c 	if (stage & (PHP_INI_STAGE_ACTIVATE | PHP_INI_STAGE_RUNTIME)) {
stage             238 ext/iconv/iconv.c 	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             248 ext/iconv/iconv.c 	if (stage & (PHP_INI_STAGE_ACTIVATE | PHP_INI_STAGE_RUNTIME)) {
stage             251 ext/iconv/iconv.c 	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             261 ext/iconv/iconv.c 	if (stage & (PHP_INI_STAGE_ACTIVATE | PHP_INI_STAGE_RUNTIME)) {
stage             264 ext/iconv/iconv.c 	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage            1277 ext/mbstring/mbstring.c 	if (stage & (PHP_INI_STAGE_ACTIVATE | PHP_INI_STAGE_RUNTIME)) {
stage            1308 ext/mbstring/mbstring.c 	if (stage & (PHP_INI_STAGE_ACTIVATE | PHP_INI_STAGE_RUNTIME)) {
stage            1345 ext/mbstring/mbstring.c 	if (stage & (PHP_INI_STAGE_ACTIVATE | PHP_INI_STAGE_RUNTIME)) {
stage            1349 ext/mbstring/mbstring.c 	if (OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage) == FAILURE) {
stage            1353 ext/mbstring/mbstring.c 	if (stage & (PHP_INI_STAGE_STARTUP | PHP_INI_STAGE_SHUTDOWN | PHP_INI_STAGE_RUNTIME)) {
stage            1416 ext/mbstring/mbstring.c 	OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             213 ext/opcache/ZendAccelerator.c 	int ret = orig_include_path_on_modify(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             112 ext/opcache/zend_accelerator_module.c 	(void)entry; (void)mh_arg2; (void)mh_arg3; (void)stage;
stage             148 ext/opcache/zend_accelerator_module.c 	(void)entry; (void)mh_arg2; (void)mh_arg3; (void)stage;
stage             192 ext/opcache/zend_accelerator_module.c 	(void)entry; (void)mh_arg2; (void)mh_arg3; (void)stage;
stage             217 ext/opcache/zend_accelerator_module.c 	if (stage == ZEND_INI_STAGE_STARTUP ||
stage             218 ext/opcache/zend_accelerator_module.c 	    stage == ZEND_INI_STAGE_SHUTDOWN ||
stage             219 ext/opcache/zend_accelerator_module.c 	    stage == ZEND_INI_STAGE_DEACTIVATE) {
stage             220 ext/opcache/zend_accelerator_module.c 		return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             266 ext/opcache/zend_accelerator_module.c 	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage              73 ext/phar/phar.c 	if (stage == ZEND_INI_STAGE_STARTUP) {
stage             188 ext/phar/phar.c 	if (stage == ZEND_INI_STAGE_STARTUP) {
stage             630 ext/session/session.c 		if (stage == ZEND_INI_STAGE_RUNTIME) {
stage             637 ext/session/session.c 		if (stage != ZEND_INI_STAGE_DEACTIVATE) {
stage             660 ext/session/session.c 		if (stage == ZEND_INI_STAGE_RUNTIME) {
stage             667 ext/session/session.c 		if (stage != ZEND_INI_STAGE_DEACTIVATE) {
stage             695 ext/session/session.c 	if (stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) {
stage             718 ext/session/session.c 	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             729 ext/session/session.c 		if (stage == ZEND_INI_STAGE_RUNTIME || stage == ZEND_INI_STAGE_ACTIVATE || stage == ZEND_INI_STAGE_STARTUP) {
stage             736 ext/session/session.c 		if (stage != ZEND_INI_STAGE_DEACTIVATE) {
stage             742 ext/session/session.c 	OnUpdateStringUnempty(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             494 ext/soap/soap.c 	if (stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) {
stage             517 ext/soap/soap.c 	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             286 ext/standard/browscap.c 	if (stage == PHP_INI_STAGE_STARTUP) {
stage             289 ext/standard/browscap.c 	} else if (stage == PHP_INI_STAGE_ACTIVATE) {
stage            1103 ext/tidy/tidy.c 	if (stage == PHP_INI_STAGE_RUNTIME) {
stage            1116 ext/tidy/tidy.c 	status = OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage            1118 ext/tidy/tidy.c 	if (stage == PHP_INI_STAGE_RUNTIME && value) {
stage            1384 ext/zlib/zlib.c 	if (stage == PHP_INI_STAGE_RUNTIME) {
stage            1396 ext/zlib/zlib.c 	if (stage == PHP_INI_STAGE_RUNTIME && int_value) {
stage            1409 ext/zlib/zlib.c 	if (stage == PHP_INI_STAGE_RUNTIME && (php_output_get_status() & PHP_OUTPUT_SENT)) {
stage            1414 ext/zlib/zlib.c 	return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage              91 main/fopen_wrappers.c 	if (stage == PHP_INI_STAGE_STARTUP || stage == PHP_INI_STAGE_SHUTDOWN || stage == PHP_INI_STAGE_ACTIVATE || stage == PHP_INI_STAGE_DEACTIVATE) {
stage             287 main/main.c    	if (stage==PHP_INI_STAGE_STARTUP) {
stage             392 main/main.c    		OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             403 main/main.c    		OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             414 main/main.c    		OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             425 main/main.c    	if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value && strcmp(ZSTR_VAL(new_value), "syslog")) {
stage             430 main/main.c    	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             440 main/main.c    	if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value) {
stage             445 main/main.c    	OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage);
stage             455 main/main.c    	if (stage == PHP_INI_STAGE_HTACCESS) {
stage             780 main/php_ini.c PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage)
stage             787 main/php_ini.c 		zend_alter_ini_entry_ex(str, Z_STR_P(data), modify_type, stage, 0);
stage              37 main/php_ini.h PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage);
stage              26 sapi/fpm/fpm/fpm_php.c static int fpm_php_zend_ini_alter_master(char *name, int name_length, char *new_value, int new_value_length, int mode, int stage) /* {{{ */
stage              39 sapi/fpm/fpm/fpm_php.c 				ini_entry->mh_arg1, ini_entry->mh_arg2, ini_entry->mh_arg3, stage) == SUCCESS) {
stage              35 sapi/fpm/fpm/fpm_request.c const char *fpm_request_get_stage_name(int stage) {
stage              36 sapi/fpm/fpm/fpm_request.c 	return requests_stages[stage];
stage              20 sapi/fpm/fpm/fpm_request.h const char *fpm_request_get_stage_name(int stage);