Home
last modified time | relevance | path

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

/PHP-7.1/Zend/
H A Dzend_execute_API.c222 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error()
1400 zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type) /* {{{ */ in zend_fetch_class() argument
1403 int fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class()
1439 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class()
1442 if (!(fetch_type & ZEND_FETCH_CLASS_SILENT) && !EG(exception)) { in zend_fetch_class()
1446 zend_throw_or_error(fetch_type, NULL, "Trait '%s' not found", ZSTR_VAL(class_name)); in zend_fetch_class()
1448 zend_throw_or_error(fetch_type, NULL, "Class '%s' not found", ZSTR_VAL(class_name)); in zend_fetch_class()
1461 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class_by_name()
1464 if ((fetch_type & ZEND_FETCH_CLASS_SILENT) == 0 && !EG(exception)) { in zend_fetch_class_by_name()
1465 if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) { in zend_fetch_class_by_name()
[all …]
H A Dzend_compile.c1436 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce()
1478 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local
1496 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name()
2496 uint32_t fetch_type; in zend_compile_class_ref() local
2529 uint32_t fetch_type; in zend_compile_class_ref_ex() local
2571 if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) { in zend_compile_class_ref_ex()
7421 switch (fetch_type) { in zend_compile_resolve_class_name()
7428 opline->extended_value = fetch_type; in zend_compile_resolve_class_name()
7435 opline->extended_value = fetch_type; in zend_compile_resolve_class_name()
7619 int fetch_type; in zend_compile_const_expr_class_const() local
[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_execute.c1523 …ays_inline HashTable *zend_get_target_symbol_table(zend_execute_data *execute_data, int fetch_type) in zend_get_target_symbol_table() argument
1527 if (EXPECTED(fetch_type == ZEND_FETCH_GLOBAL_LOCK) || in zend_get_target_symbol_table()
1528 EXPECTED(fetch_type == ZEND_FETCH_GLOBAL)) { in zend_get_target_symbol_table()
1531 ZEND_ASSERT(fetch_type == ZEND_FETCH_LOCAL); in zend_get_target_symbol_table()
H A Dzend_vm_def.h7900 uint32_t fetch_type; variable
7905 fetch_type = opline->extended_value;
7910 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
7911 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
7915 switch (fetch_type) {
H A Dzend_vm_execute.h1903 uint32_t fetch_type; local
1908 fetch_type = opline->extended_value;
1913 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" :
1914 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static");
1918 switch (fetch_type) {
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_dump.c58 static void zend_dump_class_fetch_type(uint32_t fetch_type) in zend_dump_class_fetch_type() argument
60 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_dump_class_fetch_type()
80 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_dump_class_fetch_type()
83 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in zend_dump_class_fetch_type()
86 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_dump_class_fetch_type()
/PHP-7.1/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.1/ext/odbc/
H A Dphp_odbc.c100 ZEND_ARG_INFO(0, fetch_type)
1579 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local
1585 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION()
1587 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION()
1588 php_error_docref(NULL, E_WARNING, "Invalid fetch type (%d)", fetch_type); in PHP_FUNCTION()
1598 fetch_type, in PHP_FUNCTION()
/PHP-7.1/ext/simplexml/
H A Dsimplexml.c694 static zval *sxe_property_get_adr(zval *object, zval *member, int fetch_type, void **cache_slot) /*… in sxe_property_get_adr() argument

Completed in 216 milliseconds