Home
last modified time | relevance | path

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

/PHP-7.3/Zend/
H A Dzend_execute_API.c220 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error()
1302 zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type) /* {{{ */ in zend_fetch_class() argument
1305 int fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class()
1341 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class()
1344 if (!(fetch_type & ZEND_FETCH_CLASS_SILENT) && !EG(exception)) { in zend_fetch_class()
1348 zend_throw_or_error(fetch_type, NULL, "Trait '%s' not found", ZSTR_VAL(class_name)); in zend_fetch_class()
1350 zend_throw_or_error(fetch_type, NULL, "Class '%s' not found", ZSTR_VAL(class_name)); in zend_fetch_class()
1363 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class_by_name()
1366 if ((fetch_type & ZEND_FETCH_CLASS_SILENT) == 0 && !EG(exception)) { in zend_fetch_class_by_name()
1367 if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) { in zend_fetch_class_by_name()
[all …]
H A Dzend_compile.c1440 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce()
1482 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local
1507 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name()
2477 uint32_t fetch_type; in zend_compile_class_ref_ex() local
2519 if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) { in zend_compile_class_ref_ex()
2525 result->u.op.num = fetch_type | fetch_flags; in zend_compile_class_ref_ex()
7869 switch (fetch_type) { in zend_compile_resolve_class_name()
7876 opline->op1.num = fetch_type; in zend_compile_resolve_class_name()
7883 opline->op1.num = fetch_type; in zend_compile_resolve_class_name()
8067 int fetch_type; in zend_compile_const_expr_class_const() local
[all …]
H A Dzend_execute.h306 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type);
307 …nd_class_entry *zend_fetch_class_by_name(zend_string *class_name, const zval *key, int fetch_type);
H A Dzend_vm_def.h1484 int fetch_type = variable
1487 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_var_address_helper, type, fetch_type);
1610 int fetch_type = variable
1613 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_static_prop_helper, type, fetch_type);
7664 uint32_t fetch_type; variable
7668 fetch_type = opline->op1.num; variable
7674 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
7675 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
7680 switch (fetch_type) {
H A Dzend_execute.c1594 static zend_always_inline HashTable *zend_get_target_symbol_table(int fetch_type EXECUTE_DATA_DC) in zend_get_target_symbol_table()
1598 if (EXPECTED(fetch_type & (ZEND_FETCH_GLOBAL_LOCK | ZEND_FETCH_GLOBAL))) { in zend_get_target_symbol_table()
1601 ZEND_ASSERT(fetch_type & ZEND_FETCH_LOCAL); in zend_get_target_symbol_table()
H A Dzend_vm_execute.h4630 int fetch_type = local
8072 int fetch_type = local
8458 int fetch_type = local
8583 int fetch_type = local
13436 int fetch_type = local
15860 int fetch_type = local
16159 int fetch_type = local
16285 int fetch_type = local
39664 int fetch_type = local
45825 int fetch_type = local
[all …]
/PHP-7.3/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()
/PHP-7.3/ext/interbase/
H A Dibase_query.c1471 static void _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int fetch_type) /* {{{ */ in _php_ibase_fetch_hash() argument
1508 if (! (fetch_type & FETCH_ROW)) { in _php_ibase_fetch_hash()
1635 if (fetch_type & FETCH_ROW) { in _php_ibase_fetch_hash()
1641 if (fetch_type & FETCH_ROW) { in _php_ibase_fetch_hash()
/PHP-7.3/ext/odbc/
H A Dphp_odbc.c98 ZEND_ARG_INFO(0, fetch_type)
1577 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local
1583 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION()
1585 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION()
1586 php_error_docref(NULL, E_WARNING, "Invalid fetch type (%d)", fetch_type); in PHP_FUNCTION()
1596 fetch_type, in PHP_FUNCTION()
/PHP-7.3/ext/simplexml/
H A Dsimplexml.c668 static zval *sxe_property_get_adr(zval *object, zval *member, int fetch_type, void **cache_slot) /*… in sxe_property_get_adr() argument

Completed in 271 milliseconds