/PHP-8.0/Zend/ |
H A D | zend_execute_API.c | 226 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error() 1461 int fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class() 1497 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class() 1498 return zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class() 1500 if (!(fetch_type & ZEND_FETCH_CLASS_SILENT) && !EG(exception)) { in zend_fetch_class() 1519 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_fetch_class_by_name() 1520 return zend_lookup_class_ex(class_name, key, fetch_type); in zend_fetch_class_by_name() 1522 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in zend_fetch_class_by_name() 1526 if (!(fetch_type & ZEND_FETCH_CLASS_EXCEPTION)) { in zend_fetch_class_by_name() 1538 if ((fetch_type & ZEND_FETCH_CLASS_MASK) == ZEND_FETCH_CLASS_INTERFACE) { in zend_fetch_class_by_name() [all …]
|
H A D | zend_compile.c | 1507 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce() 1566 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local 1580 zend_ensure_valid_class_fetch_type(fetch_type); in zend_try_compile_const_expr_resolve_class_name() 1582 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name() 2564 uint32_t fetch_type; in zend_compile_class_ref() local 2606 if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) { in zend_compile_class_ref() 2612 result->u.op.num = fetch_type | fetch_flags; in zend_compile_class_ref() 9216 int fetch_type; in zend_compile_const_expr_class_const() local 9226 if (ZEND_FETCH_CLASS_STATIC == fetch_type) { in zend_compile_const_expr_class_const() 9258 switch (fetch_type) { in zend_compile_const_expr_class_name() [all …]
|
H A D | zend_execute.h | 326 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type); 327 …lass_entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *lcname, int fetch_type);
|
H A D | zend_execute.c | 1966 static zend_always_inline HashTable *zend_get_target_symbol_table(int fetch_type EXECUTE_DATA_DC) in zend_get_target_symbol_table() 1970 if (EXPECTED(fetch_type & (ZEND_FETCH_GLOBAL_LOCK | ZEND_FETCH_GLOBAL))) { in zend_get_target_symbol_table() 1973 ZEND_ASSERT(fetch_type & ZEND_FETCH_LOCAL); in zend_get_target_symbol_table() 3013 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type OPLINE_DC EXECUT… in zend_fetch_static_property_address_ex() 3054 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex() 3067 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex() 3091 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type, int flags OPLIN… in zend_fetch_static_property_address() argument 3098 if ((fetch_type == BP_VAR_R || fetch_type == BP_VAR_RW) in zend_fetch_static_property_address() 3108 …success = zend_fetch_static_property_address_ex(retval, &property_info, cache_slot, fetch_type OPL… in zend_fetch_static_property_address()
|
H A D | zend_vm_def.h | 1806 int fetch_type = variable 1809 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_var_address_helper, type, fetch_type); 1864 int fetch_type = variable 1867 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_static_prop_helper, type, fetch_type); 8466 uint32_t fetch_type; variable 8488 fetch_type = opline->op1.num; 8493 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" : 8494 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static"); 8499 switch (fetch_type) {
|
H A D | zend_vm_execute.h | 883 int fetch_type = in ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_HANDLER() local 9589 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER() local 14522 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() local 14544 fetch_type = opline->op1.num; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() 14555 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() 17406 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER() local 31353 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() local 31386 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() 38939 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() local 38972 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() [all …]
|
/PHP-8.0/ext/odbc/tests/ |
H A D | odbc_data_source_001.phpt | 26 odbc_data_source(): Argument #2 ($fetch_type) must be either SQL_FETCH_FIRST or SQL_FETCH_NEXT
|
/PHP-8.0/ext/odbc/ |
H A D | odbc.stub.php | 27 function odbc_data_source($odbc, int $fetch_type): array|false {} argument
|
H A D | odbc_arginfo.h | 34 ZEND_ARG_TYPE_INFO(0, fetch_type, IS_LONG, 0)
|
H A D | php_odbc.c | 1210 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local 1216 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION() 1218 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION() 1229 fetch_type, in PHP_FUNCTION()
|
/PHP-8.0/ext/opcache/Optimizer/ |
H A D | zend_dump.c | 81 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 D | zend_inference.c | 2137 int fetch_type = opline->op2.num & ZEND_FETCH_CLASS_MASK; in zend_fetch_static_prop_info() local 2138 switch (fetch_type) { in zend_fetch_static_prop_info()
|
/PHP-8.0/ext/simplexml/ |
H A D | simplexml.c | 641 static zval *sxe_property_get_adr(zend_object *object, zend_string *zname, int fetch_type, void **c… in sxe_property_get_adr() argument
|