Home
last modified time | relevance | path

Searched refs:fetch_type (Results 1 – 14 of 14) sorted by relevance

/php-src/Zend/
H A Dzend_execute_API.c241 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error()
1649 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in report_class_fetch_error()
1654 if (!(fetch_type & ZEND_FETCH_CLASS_EXCEPTION)) { in report_class_fetch_error()
1672 uint32_t fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class()
1708 ce = zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class()
1710 report_class_fetch_error(class_name, fetch_type); in zend_fetch_class()
1718 zend_string *class_name, uint32_t fetch_type, zend_class_entry *scope) in zend_fetch_class_with_scope() argument
1721 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_fetch_class_with_scope()
1742 ce = zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class_with_scope()
1744 report_class_fetch_error(class_name, fetch_type); in zend_fetch_class_with_scope()
[all …]
H A Dzend_execute.h399 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, uint32_t fetch_type);
400 ZEND_API zend_class_entry *zend_fetch_class_with_scope(zend_string *class_name, uint32_t fetch_type
401 …entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *lcname, uint32_t fetch_type);
H A Dzend_compile.c1672 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce()
1731 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local
1747 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name()
2779 uint32_t fetch_type; in zend_compile_class_ref() local
2821 if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) { in zend_compile_class_ref()
2827 result->u.op.num = fetch_type | fetch_flags; in zend_compile_class_ref()
10341 int fetch_type; in zend_compile_const_expr_class_const() local
10354 if (ZEND_FETCH_CLASS_STATIC == fetch_type) { in zend_compile_const_expr_class_const()
10386 switch (fetch_type) { in zend_compile_const_expr_class_name()
10392 ast->attr = fetch_type; in zend_compile_const_expr_class_name()
[all …]
H A Dzend_execute.c2185 static zend_always_inline HashTable *zend_get_target_symbol_table(int fetch_type EXECUTE_DATA_DC) in zend_get_target_symbol_table()
2189 if (EXPECTED(fetch_type & (ZEND_FETCH_GLOBAL_LOCK | ZEND_FETCH_GLOBAL))) { in zend_get_target_symbol_table()
2192 ZEND_ASSERT(fetch_type & ZEND_FETCH_LOCAL); in zend_get_target_symbol_table()
3360 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type OPLINE_DC EXECUT… in zend_fetch_static_property_address_ex()
3401 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3414 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3437 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type, int flags OPLIN… in zend_fetch_static_property_address() argument
3444 if ((fetch_type == BP_VAR_R || fetch_type == BP_VAR_RW) in zend_fetch_static_property_address()
3454 …success = zend_fetch_static_property_address_ex(retval, &property_info, cache_slot, fetch_type OPL… in zend_fetch_static_property_address()
H A Dzend_vm_def.h1826 int fetch_type = variable
1829 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_var_address_helper, type, fetch_type);
1884 int fetch_type = variable
1887 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_static_prop_helper, type, fetch_type);
8734 uint32_t fetch_type; variable
8756 fetch_type = opline->op1.num;
8761 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
8762 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
8767 switch (fetch_type) {
H A Dzend_vm_execute.h895 int fetch_type = in ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_HANDLER() local
10289 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER() local
15203 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() local
15225 fetch_type = opline->op1.num; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER()
15236 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER()
18134 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER() local
32734 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() local
32767 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER()
40571 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() local
40604 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER()
[all …]
/php-src/ext/odbc/tests/
H A Dodbc_data_source_001.phpt28 odbc_data_source(): Argument #2 ($fetch_type) must be either SQL_FETCH_FIRST or SQL_FETCH_NEXT
/php-src/Zend/Optimizer/
H A Dzend_dump.c85 static void zend_dump_class_fetch_type(uint32_t fetch_type) in zend_dump_class_fetch_type() argument
87 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_dump_class_fetch_type()
107 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_dump_class_fetch_type()
110 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in zend_dump_class_fetch_type()
113 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_dump_class_fetch_type()
H A Dzend_optimizer.c863 int fetch_type = opline->op1.num & ZEND_FETCH_CLASS_MASK; in zend_fetch_class_const_info() local
864 if (fetch_type == ZEND_FETCH_CLASS_SELF) { in zend_fetch_class_const_info()
866 } else if (fetch_type == ZEND_FETCH_CLASS_STATIC) { in zend_fetch_class_const_info()
869 } else if (fetch_type == ZEND_FETCH_CLASS_PARENT) { in zend_fetch_class_const_info()
H A Dzend_inference.c2468 int fetch_type = opline->op2.num & ZEND_FETCH_CLASS_MASK; in zend_fetch_static_prop_info() local
2469 switch (fetch_type) { in zend_fetch_static_prop_info()
/php-src/ext/odbc/
H A Dodbc.stub.php337 function odbc_data_source($odbc, int $fetch_type): array|null|false {} argument
H A Dodbc_arginfo.h34 ZEND_ARG_TYPE_INFO(0, fetch_type, IS_LONG, 0)
H A Dphp_odbc.c1130 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local
1136 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION()
1138 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION()
1149 fetch_type, in PHP_FUNCTION()
/php-src/ext/simplexml/
H A Dsimplexml.c611 static zval *sxe_property_get_adr(zend_object *object, zend_string *zname, int fetch_type, void **c… in sxe_property_get_adr() argument

Completed in 284 milliseconds