Home
last modified time | relevance | path

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

/PHP-7.4/Zend/
H A Dzend_execute_API.c225 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error()
1373 int fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class()
1409 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class()
1410 return zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class()
1412 if (!(fetch_type & ZEND_FETCH_CLASS_SILENT) && !EG(exception)) { in zend_fetch_class()
1431 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class_by_name()
1432 return zend_lookup_class_ex(class_name, key, fetch_type); in zend_fetch_class_by_name()
1434 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in zend_fetch_class_by_name()
1438 if (!(fetch_type & ZEND_FETCH_CLASS_EXCEPTION)) { in zend_fetch_class_by_name()
1450 if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) { in zend_fetch_class_by_name()
[all …]
H A Dzend_compile.c1349 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce()
1397 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local
1411 zend_ensure_valid_class_fetch_type(fetch_type); in zend_try_compile_const_expr_resolve_class_name()
1413 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name()
2281 uint32_t fetch_type; in zend_compile_class_ref() local
2323 if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) { in zend_compile_class_ref()
2329 result->u.op.num = fetch_type | fetch_flags; in zend_compile_class_ref()
8304 int fetch_type; in zend_compile_const_expr_class_const() local
8314 if (ZEND_FETCH_CLASS_STATIC == fetch_type) { in zend_compile_const_expr_class_const()
8342 switch (fetch_type) { in zend_compile_const_expr_class_name()
[all …]
H A Dzend_execute.h309 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type);
310 …lass_entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *lcname, int fetch_type);
H A Dzend_execute.c1954 static zend_always_inline HashTable *zend_get_target_symbol_table(int fetch_type EXECUTE_DATA_DC) in zend_get_target_symbol_table()
1958 if (EXPECTED(fetch_type & (ZEND_FETCH_GLOBAL_LOCK | ZEND_FETCH_GLOBAL))) { in zend_get_target_symbol_table()
1961 ZEND_ASSERT(fetch_type & ZEND_FETCH_LOCAL); in zend_get_target_symbol_table()
2997 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type OPLINE_DC EXECUT… in zend_fetch_static_property_address_ex()
3052 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex()
3077 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type, int flags OPLIN… in zend_fetch_static_property_address() argument
3085 if ((fetch_type == BP_VAR_R || fetch_type == BP_VAR_RW) in zend_fetch_static_property_address()
3093 …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.h1878 int fetch_type = variable
1881 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_var_address_helper, type, fetch_type);
1936 int fetch_type = variable
1939 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_static_prop_helper, type, fetch_type);
8221 uint32_t fetch_type; variable
8225 fetch_type = opline->op1.num; variable
8231 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
8232 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
8237 switch (fetch_type) {
H A Dzend_vm_execute.h922 int fetch_type = in ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_HANDLER() local
925 …ZEND_VM_TAIL_CALL(zend_fetch_static_prop_helper_SPEC(fetch_type ZEND_OPCODE_HANDLER_ARGS_PASSTHRU_… in ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_HANDLER()
9019 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER() local
16715 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER() local
30420 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() local
30424 fetch_type = opline->op1.num; in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() local
30430 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" : in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER()
30431 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static"); in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER()
30436 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER()
45518 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_CV_UNUSED_HANDLER() local
[all …]
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_dump.c81 static void zend_dump_class_fetch_type(uint32_t fetch_type) in zend_dump_class_fetch_type() argument
83 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_dump_class_fetch_type()
103 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_dump_class_fetch_type()
106 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in zend_dump_class_fetch_type()
109 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_dump_class_fetch_type()
H A Dzend_inference.c2364 int fetch_type = opline->op2.num & ZEND_FETCH_CLASS_MASK; in zend_fetch_static_prop_info() local
2365 switch (fetch_type) { in zend_fetch_static_prop_info()
/PHP-7.4/ext/odbc/
H A Dphp_odbc.c98 ZEND_ARG_INFO(0, fetch_type)
1575 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local
1581 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION()
1583 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION()
1584 php_error_docref(NULL, E_WARNING, "Invalid fetch type (%d)", fetch_type); in PHP_FUNCTION()
1594 fetch_type, in PHP_FUNCTION()
/PHP-7.4/ext/simplexml/
H A Dsimplexml.c675 static zval *sxe_property_get_adr(zval *object, zval *member, int fetch_type, void **cache_slot) /*… in sxe_property_get_adr() argument

Completed in 304 milliseconds