Home
last modified time | relevance | path

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

/PHP-7.0/Zend/
H A Dzend_execute_API.c220 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error()
1334 zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type) /* {{{ */ in zend_fetch_class() argument
1337 int fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class()
1371 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class()
1374 if (!(fetch_type & ZEND_FETCH_CLASS_SILENT) && !EG(exception)) { in zend_fetch_class()
1378 zend_throw_or_error(fetch_type, NULL, "Trait '%s' not found", ZSTR_VAL(class_name)); in zend_fetch_class()
1380 zend_throw_or_error(fetch_type, NULL, "Class '%s' not found", ZSTR_VAL(class_name)); in zend_fetch_class()
1393 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class_by_name()
1396 if ((fetch_type & ZEND_FETCH_CLASS_SILENT) == 0 && !EG(exception)) { in zend_fetch_class_by_name()
1397 if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) { in zend_fetch_class_by_name()
[all …]
H A Dzend_execute.h298 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type);
299 …nd_class_entry *zend_fetch_class_by_name(zend_string *class_name, const zval *key, int fetch_type);
H A Dzend_compile.c1327 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce()
1369 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local
1387 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name()
2176 uint32_t fetch_type; in zend_compile_class_ref() local
2183 fetch_type = zend_get_class_fetch_type(name); in zend_compile_class_ref()
6721 switch (fetch_type) { in zend_compile_resolve_class_name()
6728 opline->extended_value = fetch_type; in zend_compile_resolve_class_name()
6735 opline->extended_value = fetch_type; in zend_compile_resolve_class_name()
6918 int fetch_type; in zend_compile_const_expr_class_const() local
6933 if (ZEND_FETCH_CLASS_STATIC == fetch_type) { in zend_compile_const_expr_class_const()
[all …]
H A Dzend_execute.c1521 …ays_inline HashTable *zend_get_target_symbol_table(zend_execute_data *execute_data, int fetch_type) in zend_get_target_symbol_table() argument
1525 if (EXPECTED(fetch_type == ZEND_FETCH_GLOBAL_LOCK) || in zend_get_target_symbol_table()
1526 EXPECTED(fetch_type == ZEND_FETCH_GLOBAL)) { in zend_get_target_symbol_table()
1528 } else if (EXPECTED(fetch_type == ZEND_FETCH_STATIC)) { in zend_get_target_symbol_table()
1538 ZEND_ASSERT(fetch_type == ZEND_FETCH_LOCAL); in zend_get_target_symbol_table()
H A Dzend_vm_def.h7878 uint32_t fetch_type; variable
7882 fetch_type = opline->extended_value;
7886 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
7887 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
7891 switch (fetch_type) {
H A Dzend_vm_execute.h1667 uint32_t fetch_type; local
1671 fetch_type = opline->extended_value;
1675 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
1676 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
1680 switch (fetch_type) {
/PHP-7.0/ext/interbase/
H A Dibase_query.c1475 static void _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int fetch_type) /* {{{ */ in _php_ibase_fetch_hash() argument
1512 if (! (fetch_type & FETCH_ROW)) { in _php_ibase_fetch_hash()
1639 if (fetch_type & FETCH_ROW) { in _php_ibase_fetch_hash()
1645 if (fetch_type & FETCH_ROW) { in _php_ibase_fetch_hash()
/PHP-7.0/ext/odbc/
H A Dphp_odbc.c100 ZEND_ARG_INFO(0, fetch_type)
1572 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local
1578 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION()
1580 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION()
1581 php_error_docref(NULL, E_WARNING, "Invalid fetch type (%d)", fetch_type); in PHP_FUNCTION()
1591 fetch_type, in PHP_FUNCTION()
/PHP-7.0/ext/simplexml/
H A Dsimplexml.c691 static zval *sxe_property_get_adr(zval *object, zval *member, int fetch_type, void **cache_slot) /*… in sxe_property_get_adr() argument

Completed in 238 milliseconds