Home
last modified time | relevance | path

Searched refs:default_value (Results 1 – 6 of 6) sorted by relevance

/PHP-7.2/Zend/
H A Dzend_ini.h100 …{ name, on_modify, arg1, arg2, arg3, default_value, displayer, modifiable, sizeof(name)-1, sizeof(
102 #define ZEND_INI_ENTRY3(name, default_value, modifiable, on_modify, arg1, arg2, arg3) \ argument
103 ZEND_INI_ENTRY3_EX(name, default_value, modifiable, on_modify, arg1, arg2, arg3, NULL)
108 #define ZEND_INI_ENTRY2(name, default_value, modifiable, on_modify, arg1, arg2) \ argument
109 ZEND_INI_ENTRY2_EX(name, default_value, modifiable, on_modify, arg1, arg2, NULL)
111 #define ZEND_INI_ENTRY1_EX(name, default_value, modifiable, on_modify, arg1, displayer) \ argument
114 #define ZEND_INI_ENTRY1(name, default_value, modifiable, on_modify, arg1) \ argument
115 ZEND_INI_ENTRY1_EX(name, default_value, modifiable, on_modify, arg1, NULL)
117 #define ZEND_INI_ENTRY_EX(name, default_value, modifiable, on_modify, displayer) \ argument
120 #define ZEND_INI_ENTRY(name, default_value, modifiable, on_modify) \ argument
[all …]
H A Dzend_ini.c215 zval *default_value; in zend_register_ini_entries() local
255 if (((default_value = zend_get_configuration_directive(p->name)) != NULL) && in zend_register_ini_entries()
256 …(!p->on_modify || p->on_modify(p, Z_STR_P(default_value), p->mh_arg1, p->mh_arg2, p->mh_arg3, ZEND… in zend_register_ini_entries()
258 p->value = zend_string_copy(Z_STR_P(default_value)); in zend_register_ini_entries()
H A Dzend_execute.c745 static int is_null_constant(zend_class_entry *scope, zval *default_value) in is_null_constant() argument
747 if (Z_CONSTANT_P(default_value)) { in is_null_constant()
750 ZVAL_COPY(&constant, default_value); in is_null_constant()
826 zval *default_value, zend_class_entry *scope, in zend_check_type() argument
840 …g) == IS_NULL && (ZEND_TYPE_ALLOW_NULL(type) || (default_value && is_null_constant(scope, default_… in zend_check_type()
847 …g) == IS_NULL && (ZEND_TYPE_ALLOW_NULL(type) || (default_value && is_null_constant(scope, default_… in zend_check_type()
852 …g) == IS_NULL && (ZEND_TYPE_ALLOW_NULL(type) || (default_value && is_null_constant(scope, default_… in zend_check_type()
873 …verify_arg_type(zend_function *zf, uint32_t arg_num, zval *arg, zval *default_value, void **cache_… in zend_verify_arg_type() argument
886 …if (UNEXPECTED(!zend_check_type(cur_arg_info->type, arg, &ce, cache_slot, default_value, zf->commo… in zend_verify_arg_type()
3061 …_check_arg_type(zend_function *zf, uint32_t arg_num, zval *arg, zval *default_value, void **cache_… in zend_check_arg_type() argument
[all …]
H A Dzend_execute.h58 …_check_arg_type(zend_function *zf, uint32_t arg_num, zval *arg, zval *default_value, void **cache_…
H A Dzend_vm_def.h4698 zval *default_value = EX_CONSTANT(opline->op2); variable
4701 …(!zend_verify_arg_type(EX(func), arg_num, param, default_value, CACHE_ADDR(Z_CACHE_SLOT_P(default_…
H A Dzend_vm_execute.h2308 zval *default_value = EX_CONSTANT(opline->op2); local
2311 …(!zend_verify_arg_type(EX(func), arg_num, param, default_value, CACHE_ADDR(Z_CACHE_SLOT_P(default_…

Completed in 210 milliseconds