Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 25 of 31) sorted by relevance

12

/PHP-5.5/Zend/
H A Dzend_ini.c47 static int zend_restore_ini_entry_cb(zend_ini_entry *ini_entry, int stage TSRMLS_DC) /* {{{ */ in zend_restore_ini_entry_cb()
60 if (stage == ZEND_INI_STAGE_RUNTIME && result == FAILURE) { in zend_restore_ini_entry_cb()
231 static int zend_ini_refresh_cache(zend_ini_entry *p, int stage TSRMLS_DC) /* {{{ */ in zend_ini_refresh_cache()
234 p->on_modify(p, p->value, p->value_length, p->mh_arg1, p->mh_arg2, p->mh_arg3, stage TSRMLS_CC); in zend_ini_refresh_cache()
240 ZEND_API void zend_ini_refresh_caches(int stage TSRMLS_DC) /* {{{ */ in zend_ini_refresh_caches()
242 …i_directives), (apply_func_arg_t) zend_ini_refresh_cache, (void *)(zend_intptr_t) stage TSRMLS_CC); in zend_ini_refresh_caches()
251 …return zend_alter_ini_entry_ex(name, name_length, new_value, new_value_length, modify_type, stage,… in zend_alter_ini_entry()
269 if (stage == ZEND_INI_STAGE_ACTIVATE && modify_type == ZEND_INI_SYSTEM) { in zend_alter_ini_entry_ex()
309 ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage) /* {{{ */ in zend_restore_ini_entry() argument
315 (stage == ZEND_INI_STAGE_RUNTIME && (ini_entry->modifiable & ZEND_INI_USER) == 0)) { in zend_restore_ini_entry()
[all …]
H A Dzend_ini.h60 …new_value, uint new_value_length, void *mh_arg1, void *mh_arg2, void *mh_arg3, int stage TSRMLS_DC)
96 ZEND_API void zend_ini_refresh_caches(int stage TSRMLS_DC);
97 …(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage);
98 …name_length, char *new_value, uint new_value_length, int modify_type, int stage, int force_change …
99 ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage);
H A Dzend.c78 OnUpdateBool(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in ZEND_INI_MH()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_request.h20 const char *fpm_request_get_stage_name(int stage);
H A Dfpm_php.c26 …me, int name_length, char *new_value, int new_value_length, int mode, int stage TSRMLS_DC) /* {{{ … in fpm_php_zend_ini_alter_master()
39 ini_entry->mh_arg1, ini_entry->mh_arg2, ini_entry->mh_arg3, stage TSRMLS_CC) == SUCCESS) { in fpm_php_zend_ini_alter_master()
H A Dfpm_request.c35 const char *fpm_request_get_stage_name(int stage) { in fpm_request_get_stage_name() argument
36 return requests_stages[stage]; in fpm_request_get_stage_name()
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.h43 long stage; member
H A DREADME6 php code to be run on the apache request object at every stage of the apache
17 specified file at the uri translation stage of the apache request
19 the uri translation stage of the apache request
H A Dmod_php5.c935 handler->stage = handler_stage; in php_set_server_handler()
954 handler->stage = handler_stage; in php_set_dir_handler()
/PHP-5.5/main/
H A Dphp_ini.h36 PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage TSRMLS_DC);
H A Dfopen_wrappers.c95 …if (stage == PHP_INI_STAGE_STARTUP || stage == PHP_INI_STAGE_SHUTDOWN || stage == PHP_INI_STAGE_AC… in ZEND_INI_MH()
H A Dmain.c317 if (stage==PHP_INI_STAGE_STARTUP) { in PHP_INI_MH()
423 …if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value && strcmp(new… in PHP_INI_MH()
428 OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
438 if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value) { in PHP_INI_MH()
443 OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
453 if (stage == PHP_INI_STAGE_HTACCESS) { in PHP_INI_MH()
H A Dphp_ini.c786 PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage TSRMLS_DC) in php_ini_activate_config()
799 …zend_alter_ini_entry_ex(str, str_len, Z_STRVAL_P(data), Z_STRLEN_P(data), modify_type, stage, 0 TS… in php_ini_activate_config()
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_module.c112 (void)entry; (void)new_value_length; (void)mh_arg2; (void)mh_arg3; (void)stage; in ZEND_INI_MH()
150 (void)entry; (void)new_value_length; (void)mh_arg2; (void)mh_arg3; (void)stage; in ZEND_INI_MH()
196 (void)entry; (void)new_value_length; (void)mh_arg2; (void)mh_arg3; (void)stage; in ZEND_INI_MH()
223 if (stage == ZEND_INI_STAGE_STARTUP || in ZEND_INI_MH()
224 stage == ZEND_INI_STAGE_SHUTDOWN || in ZEND_INI_MH()
225 stage == ZEND_INI_STAGE_DEACTIVATE) { in ZEND_INI_MH()
226 …return OnUpdateBool(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC… in ZEND_INI_MH()
/PHP-5.5/ext/zlib/
H A Dzlib.c902 if (stage == PHP_INI_STAGE_RUNTIME) { in PHP_INI_MH()
910 …status = OnUpdateLong(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
913 if (stage == PHP_INI_STAGE_RUNTIME && int_value) { in PHP_INI_MH()
926 if (stage == PHP_INI_STAGE_RUNTIME && (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_SENT)) { in PHP_INI_MH()
931 …return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
/PHP-5.5/ext/session/
H A Dsession.c580 if (stage == ZEND_INI_STAGE_RUNTIME) { in PHP_INI_MH()
587 if (stage != ZEND_INI_STAGE_DEACTIVATE) { in PHP_INI_MH()
610 if (stage == ZEND_INI_STAGE_RUNTIME) { in PHP_INI_MH()
617 if (stage != ZEND_INI_STAGE_DEACTIVATE) { in PHP_INI_MH()
645 if (stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) { in PHP_INI_MH()
668 OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
679 …if (stage == ZEND_INI_STAGE_RUNTIME || stage == ZEND_INI_STAGE_ACTIVATE || stage == ZEND_INI_STAGE… in PHP_INI_MH()
686 if (stage != ZEND_INI_STAGE_DEACTIVATE) { in PHP_INI_MH()
692 …OnUpdateStringUnempty(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
/PHP-5.5/ext/standard/
H A Dbrowscap.c315 if (stage == PHP_INI_STAGE_STARTUP) { in PHP_INI_MH()
318 } else if (stage == PHP_INI_STAGE_ACTIVATE) { in PHP_INI_MH()
/PHP-5.5/ext/dba/
H A Ddba.c475 …return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in ZEND_INI_MH()
485 …return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in ZEND_INI_MH()
/PHP-5.5/ext/tidy/
H A Dtidy.c1127 if (stage == PHP_INI_STAGE_RUNTIME) { in PHP_INI_MH()
1140 …status = OnUpdateBool(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
1142 if (stage == PHP_INI_STAGE_RUNTIME && value) { in PHP_INI_MH()
/PHP-5.5/ext/mbstring/
H A Dmbstring.c1341 …if (OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC)… in PHP_INI_MH()
1344 if (stage == PHP_INI_STAGE_STARTUP || stage == PHP_INI_STAGE_SHUTDOWN in PHP_INI_MH()
1345 || stage == PHP_INI_STAGE_RUNTIME) { in PHP_INI_MH()
1404 OnUpdateBool(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
/PHP-5.5/
H A DCODING_STANDARDS7 stage of the development of PHP v3.0, the code base does not (yet) fully
/PHP-5.5/ext/phar/
H A Dphar.c73 if (stage == ZEND_INI_STAGE_STARTUP) { in ZEND_INI_MH()
189 if (stage == ZEND_INI_STAGE_STARTUP) { in ZEND_INI_MH()
/PHP-5.5/ext/exif/
H A Dexif.c189 …return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in ZEND_DECLARE_MODULE_GLOBALS()
204 …return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in ZEND_INI_MH()
/PHP-5.5/ext/soap/
H A Dsoap.c490 if (stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) { in PHP_INI_MH()
513 OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
/PHP-5.5/ext/iconv/
H A Diconv.c228 OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()

Completed in 145 milliseconds

12