Searched refs:modify_type (Results 1 – 4 of 4) sorted by relevance
/php-src/Zend/ |
H A D | zend_ini.c | 325 …lt zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int stage) /* … in zend_alter_ini_entry() argument 328 return zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0); in zend_alter_ini_entry() 332 …y_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage) /* … in zend_alter_ini_entry_chars() argument 338 ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, 0); in zend_alter_ini_entry_chars() 344 …hars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int… in zend_alter_ini_entry_chars_ex() argument 350 ret = zend_alter_ini_entry_ex(name, new_value, modify_type, stage, force_change); in zend_alter_ini_entry_chars_ex() 356 …zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, int stage, boo… in zend_alter_ini_entry_ex() argument 370 if (stage == ZEND_INI_STAGE_ACTIVATE && modify_type == ZEND_INI_SYSTEM) { in zend_alter_ini_entry_ex() 375 if (!(ini_entry->modifiable & modify_type)) { in zend_alter_ini_entry_ex()
|
H A D | zend_ini.h | 81 …result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_type, int stage); 82 …zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_type, int stage, boo… 83 …entry_chars(zend_string *name, const char *value, size_t value_length, int modify_type, int stage); 84 …hars_ex(zend_string *name, const char *value, size_t value_length, int modify_type, int stage, int…
|
/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 | php_ini.c | 800 PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage) in php_ini_activate_config() argument 808 zend_alter_ini_entry_ex(str, data_str, modify_type, stage, 0); in php_ini_activate_config()
|
Completed in 12 milliseconds