/php-src/ext/opcache/tests/jit/ |
H A D | bug81512.phpt | 19 foreach ($pipeline as $stage) { 20 if (!is_array($stage)) { 24 $stage = (array) $stage; 25 reset($stage);
|
/php-src/ext/standard/ |
H A D | assert.c | 43 static inline bool php_must_emit_ini_deprecation(int stage) in php_must_emit_ini_deprecation() argument 45 …return stage != ZEND_INI_STAGE_DEACTIVATE && stage != ZEND_INI_STAGE_SHUTDOWN && stage != ZEND_INI… in php_must_emit_ini_deprecation() 56 if (php_must_emit_ini_deprecation(stage)) { in PHP_INI_MH() 66 if (php_must_emit_ini_deprecation(stage)) { in PHP_INI_MH() 84 if (php_must_emit_ini_deprecation(stage) && !*p) { in PHP_INI_MH() 94 if (php_must_emit_ini_deprecation(stage) && *p) { in PHP_INI_MH() 104 if (php_must_emit_ini_deprecation(stage) && !*p) { in PHP_INI_MH() 115 if (php_must_emit_ini_deprecation(stage) && !*p) { in PHP_INI_MH()
|
H A D | url_scanner_ex.re | 48 …y, zend_string *new_value, void *mh_arg1, void *mh_arg2, void *mh_arg3, int stage, bool is_session) 108 …return php_ini_on_update_tags(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage, /* is_session */… 113 …return php_ini_on_update_tags(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage, /* is_session */… 116 …y, zend_string *new_value, void *mh_arg1, void *mh_arg2, void *mh_arg3, int stage, bool is_session) 161 …return php_ini_on_update_hosts(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage, /* is_session *… 166 …return php_ini_on_update_hosts(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage, /* is_session *…
|
/php-src/Zend/ |
H A D | zend_ini.c | 51 static zend_result zend_restore_ini_entry_cb(zend_ini_entry *ini_entry, int stage) /* {{{ */ in zend_restore_ini_entry_cb() argument 64 if (stage == ZEND_INI_STAGE_RUNTIME && result == FAILURE) { in zend_restore_ini_entry_cb() 312 ZEND_API void zend_ini_refresh_caches(int stage) /* {{{ */ in zend_ini_refresh_caches() argument 318 p->on_modify(p, p->value, p->mh_arg1, p->mh_arg2, p->mh_arg3, stage); in zend_ini_refresh_caches() 328 return zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0); in zend_alter_ini_entry() 338 ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0); in zend_alter_ini_entry_chars() 350 ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, force_change); in zend_alter_ini_entry_chars_ex() 370 if (stage == ZEND_INI_STAGE_ACTIVATE && modify_type == ZEND_INI_SYSTEM) { in zend_alter_ini_entry_ex() 408 ZEND_API zend_result zend_restore_ini_entry(zend_string *name, int stage) /* {{{ */ in zend_restore_ini_entry() argument 413 (stage == ZEND_INI_STAGE_RUNTIME && (ini_entry->modifiable & ZEND_INI_USER) == 0)) { in zend_restore_ini_entry() [all …]
|
H A D | zend_ini.h | 30 …d_ini_entry *entry, zend_string *new_value, void *mh_arg1, void *mh_arg2, void *mh_arg3, int stage) 80 ZEND_API void zend_ini_refresh_caches(int stage); 81 …result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int stage); 82 …_entry_ex(zend_string *name, zend_string *new_value, int modify_type, int stage, bool force_change… 83 …entry_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage); 84 …tring *name, const char *value, size_t value_length, int modify_type, int stage, int force_change); 85 ZEND_API zend_result zend_restore_ini_entry(zend_string *name, int stage);
|
/php-src/ext/zend_test/ |
H A D | observer.c | 316 …if (stage != PHP_INI_STAGE_STARTUP && stage != PHP_INI_STAGE_ACTIVATE && stage != PHP_INI_STAGE_DE… in ZEND_INI_MH() 339 …if (stage != PHP_INI_STAGE_STARTUP && stage != PHP_INI_STAGE_ACTIVATE && stage != PHP_INI_STAGE_DE… in ZEND_INI_MH()
|
H A D | zend_mm_custom_handlers.c | 166 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
|
/php-src/sapi/fpm/fpm/ |
H A D | fpm_request.h | 24 const char *fpm_request_get_stage_name(int stage);
|
H A D | fpm_php.c | 24 …(char *name, int name_length, char *new_value, int new_value_length, int mode, int stage) /* {{{ */ in fpm_php_zend_ini_alter_master() argument 37 ini_entry->mh_arg1, ini_entry->mh_arg2, ini_entry->mh_arg3, stage) == SUCCESS) { in fpm_php_zend_ini_alter_master()
|
H A D | fpm_request.c | 33 const char *fpm_request_get_stage_name(int stage) { in fpm_request_get_stage_name() argument 34 return requests_stages[stage]; in fpm_request_get_stage_name()
|
/php-src/ext/dom/lexbor/lexbor/css/selectors/ |
H A D | selectors.c | 177 if (parser->stage != LXB_CSS_PARSER_CLEAN) { in lxb_css_selectors_parse_prepare() 178 if (parser->stage == LXB_CSS_PARSER_RUN) { in lxb_css_selectors_parse_prepare() 186 parser->stage = LXB_CSS_PARSER_RUN; in lxb_css_selectors_parse_prepare() 224 parser->stage = LXB_CSS_PARSER_END; in lxb_css_selectors_parse_finish()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit.h | 160 int zend_jit_config(zend_string *jit_options, int stage); 161 int zend_jit_debug_config(zend_long old_val, zend_long new_val, int stage);
|
/php-src/ext/dom/lexbor/lexbor/css/syntax/ |
H A D | anb.c | 58 if (parser->stage != LXB_CSS_PARSER_CLEAN) { in lxb_css_syntax_anb_parse() 59 if (parser->stage == LXB_CSS_PARSER_RUN) { in lxb_css_syntax_anb_parse() 77 parser->stage = LXB_CSS_PARSER_RUN; in lxb_css_syntax_anb_parse() 84 parser->stage = LXB_CSS_PARSER_END; in lxb_css_syntax_anb_parse()
|
H A D | syntax.c | 52 parser->stage = LXB_CSS_PARSER_RUN; in lxb_css_syntax_parse_list_rules() 61 parser->stage = LXB_CSS_PARSER_END; in lxb_css_syntax_parse_list_rules()
|
/php-src/ext/pdo_pgsql/tests/ |
H A D | bug75402.phpt | 25 "stage" character varying(16) NOT NULL, 44 …2 (\"id\", \"group_id\", \"submitter\", \"operation\", \"description\", \"stage\", \"status\", \"p…
|
/php-src/main/ |
H A D | php_ini.h | 33 PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage);
|
H A D | main.c | 330 if (stage != ZEND_INI_STAGE_DEACTIVATE) { in PHP_INI_MH() 453 if (stage==PHP_INI_STAGE_STARTUP) { in PHP_INI_MH() 460 if (stage != PHP_INI_STAGE_DEACTIVATE) { in PHP_INI_MH() 595 OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH() 622 OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH() 638 OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH() 654 OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH() 671 if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && in PHP_INI_MH() 677 OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH() 686 if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value) { in PHP_INI_MH() [all …]
|
H A D | fopen_wrappers.c | 79 …if (stage == PHP_INI_STAGE_STARTUP || stage == PHP_INI_STAGE_SHUTDOWN || stage == PHP_INI_STAGE_AC… in ZEND_INI_MH()
|
/php-src/ext/opcache/ |
H A D | zend_accelerator_module.c | 145 if (stage == ZEND_INI_STAGE_STARTUP || in ZEND_INI_MH() 146 stage == ZEND_INI_STAGE_SHUTDOWN || in ZEND_INI_MH() 147 stage == ZEND_INI_STAGE_DEACTIVATE) { in ZEND_INI_MH() 148 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in ZEND_INI_MH() 184 OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); 191 if (zend_jit_config(new_value, stage) == SUCCESS) { 192 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); 202 if (zend_jit_debug_config(*p, val, stage) == SUCCESS) {
|
/php-src/ext/session/ |
H A D | session.c | 91 if (SG(headers_sent) && stage != ZEND_INI_STAGE_DEACTIVATE) { \ 612 if (stage == ZEND_INI_STAGE_RUNTIME) { in PHP_INI_MH() 618 if (stage != ZEND_INI_STAGE_DEACTIVATE) { in PHP_INI_MH() 650 if (stage == ZEND_INI_STAGE_RUNTIME) { in PHP_INI_MH() 657 if (stage != ZEND_INI_STAGE_DEACTIVATE) { in PHP_INI_MH() 674 if (stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) { in PHP_INI_MH() 697 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH() 711 …if (stage == ZEND_INI_STAGE_RUNTIME || stage == ZEND_INI_STAGE_ACTIVATE || stage == ZEND_INI_STAGE… in PHP_INI_MH() 718 if (stage != ZEND_INI_STAGE_DEACTIVATE) { in PHP_INI_MH() 755 return OnUpdateLong(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH() [all …]
|
/php-src/ext/dom/lexbor/lexbor/css/ |
H A D | parser.c | 95 parser->stage = LXB_CSS_PARSER_CLEAN; in lxb_css_parser_init() 112 parser->stage = LXB_CSS_PARSER_CLEAN; in lxb_css_parser_clean()
|
H A D | parser.h | 170 lxb_css_parser_stage_t stage; member 289 return parser->stage == LXB_CSS_PARSER_RUN; in lxb_css_parser_is_running()
|
/php-src/ext/com_dotnet/ |
H A D | com_extension.c | 148 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in ZEND_INI_MH()
|
/php-src/sapi/litespeed/ |
H A D | lsapi_main.c | 785 int stage = PHP_INI_STAGE_RUNTIME; in alter_ini() local 798 stage = PHP_INI_STAGE_ACTIVATE; in alter_ini() 803 stage = PHP_INI_STAGE_HTACCESS; in alter_ini() 818 type, stage); in alter_ini()
|
/php-src/ext/zlib/ |
H A D | zlib.c | 1280 if (stage == PHP_INI_STAGE_RUNTIME) { in ZEND_GET_MODULE() 1292 if (stage == PHP_INI_STAGE_RUNTIME && int_value) { in ZEND_GET_MODULE() 1305 if (stage == PHP_INI_STAGE_RUNTIME && (php_output_get_status() & PHP_OUTPUT_SENT)) { in PHP_INI_MH() 1310 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
|