Searched refs:orig_value (Results 1 – 13 of 13) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_ini.c | 71 ini_entry->value = ini_entry->orig_value; in zend_restore_ini_entry_cb() 74 ini_entry->orig_value = NULL; in zend_restore_ini_entry_cb() 89 if (entry->orig_value) { in free_ini_entry() 159 if (old_entry->orig_value) { in copy_ini_entry() 160 new_entry->orig_value = zend_string_dup(old_entry->orig_value, 1); in copy_ini_entry() 234 p->orig_value = NULL; in zend_register_ini_entries_ex() 454 return (ini_entry->orig_value ? ZEND_STRTOL(ZSTR_VAL(ini_entry->orig_value), NULL, 0) : 0); in zend_ini_long() 471 …return (double) (ini_entry->orig_value ? zend_strtod(ZSTR_VAL(ini_entry->orig_value), NULL) : 0.0); in zend_ini_double() 492 return ini_entry->orig_value ? ZSTR_VAL(ini_entry->orig_value) : NULL; in zend_ini_string_ex() 532 return ini_entry->orig_value ? ini_entry->orig_value : NULL; in zend_ini_str_ex() [all …]
|
H A D | zend_ini.h | 52 zend_string *orig_value; member
|
H A D | zend_execute.c | 3633 ZEND_API zval* zend_assign_to_typed_ref_ex(zval *variable_ptr, zval *orig_value, uint8_t value_type… in zend_assign_to_typed_ref_ex() argument 3639 if (Z_ISREF_P(orig_value)) { in zend_assign_to_typed_ref_ex() 3640 ref = Z_COUNTED_P(orig_value); in zend_assign_to_typed_ref_ex() 3641 orig_value = Z_REFVAL_P(orig_value); in zend_assign_to_typed_ref_ex() 3644 ZVAL_COPY(&value, orig_value); in zend_assign_to_typed_ref_ex() 3658 zval_ptr_dtor(orig_value); in zend_assign_to_typed_ref_ex() 3662 i_zval_ptr_dtor_noref(orig_value); in zend_assign_to_typed_ref_ex() 3668 ZEND_API zval* zend_assign_to_typed_ref(zval *variable_ptr, zval *orig_value, uint8_t value_type, b… in zend_assign_to_typed_ref() argument 3671 zval *result = zend_assign_to_typed_ref_ex(variable_ptr, orig_value, value_type, strict, &garbage); in zend_assign_to_typed_ref()
|
H A D | zend_builtin_functions.c | 411 p->orig_value = p->value; in ZEND_FUNCTION() 415 } else if (p->orig_value != p->value) { in ZEND_FUNCTION()
|
H A D | zend_vm_def.h | 7578 EG(error_reporting_ini_entry)->orig_value = EG(error_reporting_ini_entry)->value;
|
H A D | zend_vm_execute.h | 3019 EG(error_reporting_ini_entry)->orig_value = EG(error_reporting_ini_entry)->value; in ZEND_BEGIN_SILENCE_SPEC_HANDLER()
|
/PHP-8.3/main/ |
H A D | php_ini.c | 79 if (ini_entry->orig_value && ZSTR_VAL(ini_entry->orig_value)[0]) { in php_ini_displayer_cb() 80 display_string = ZSTR_VAL(ini_entry->orig_value); in php_ini_displayer_cb() 81 display_string_length = ZSTR_LEN(ini_entry->orig_value); in php_ini_displayer_cb()
|
H A D | main.c | 479 temporary_value = (ini_entry->orig_value ? ini_entry->orig_value : NULL ); in PHP_INI_DISP()
|
/PHP-8.3/ext/odbc/ |
H A D | php_odbc.c | 216 value = ZSTR_VAL(ini_entry->orig_value); in PHP_INI_DISP() 239 value = ZSTR_VAL(ini_entry->orig_value); in PHP_INI_DISP() 268 value = ZSTR_VAL(ini_entry->orig_value); in PHP_INI_DISP() 297 value = ZSTR_VAL(ini_entry->orig_value); in PHP_INI_DISP() 321 value = ZSTR_VAL(ini_entry->orig_value); in PHP_INI_DISP()
|
/PHP-8.3/ext/standard/ |
H A D | basic_functions.c | 1981 if (ini_entry->orig_value) { 1982 add_assoc_str(&option, "global_value", zend_string_copy(ini_entry->orig_value));
|
/PHP-8.3/ext/opcache/ |
H A D | ZendAccelerator.c | 764 if (entry->orig_value) { in accel_copy_permanent_strings() 765 entry->orig_value = new_interned_string(entry->orig_value); in accel_copy_permanent_strings()
|
/PHP-8.3/ext/reflection/ |
H A D | php_reflection.c | 970 …tf(str, " %s Default = '%s'\n", indent, ini_entry->orig_value ? ZSTR_VAL(ini_entry->orig_value… in _extension_ini_string()
|
/PHP-8.3/ext/mbstring/ |
H A D | mbstring.c | 913 new_value = entry->orig_value; in PHP_INI_MH()
|
Completed in 322 milliseconds