/PHP-8.1/Zend/ |
H A D | zend_execute_API.c | 236 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error() 1557 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in report_class_fetch_error() 1562 if (!(fetch_type & ZEND_FETCH_CLASS_EXCEPTION)) { in report_class_fetch_error() 1580 int fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class() 1616 ce = zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class() 1618 report_class_fetch_error(class_name, fetch_type); in zend_fetch_class() 1626 zend_string *class_name, int fetch_type, zend_class_entry *scope) in zend_fetch_class_with_scope() argument 1629 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_fetch_class_with_scope() 1650 ce = zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class_with_scope() 1652 report_class_fetch_error(class_name, fetch_type); in zend_fetch_class_with_scope() [all …]
|
H A D | zend_execute.h | 354 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type); 355 ZEND_API zend_class_entry *zend_fetch_class_with_scope(zend_string *class_name, int fetch_type, zen… 356 …lass_entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *lcname, int fetch_type);
|
H A D | zend_compile.c | 1567 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce() 1626 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local 1642 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name() 2643 uint32_t fetch_type; in zend_compile_class_ref() local 2685 if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) { in zend_compile_class_ref() 2691 result->u.op.num = fetch_type | fetch_flags; in zend_compile_class_ref() 9781 int fetch_type; in zend_compile_const_expr_class_const() local 9791 if (ZEND_FETCH_CLASS_STATIC == fetch_type) { in zend_compile_const_expr_class_const() 9823 switch (fetch_type) { in zend_compile_const_expr_class_name() 9829 ast->attr = fetch_type; in zend_compile_const_expr_class_name() [all …]
|
H A D | zend_execute.c | 2123 static zend_always_inline HashTable *zend_get_target_symbol_table(int fetch_type EXECUTE_DATA_DC) in zend_get_target_symbol_table() 2127 if (EXPECTED(fetch_type & (ZEND_FETCH_GLOBAL_LOCK | ZEND_FETCH_GLOBAL))) { in zend_get_target_symbol_table() 2130 ZEND_ASSERT(fetch_type & ZEND_FETCH_LOCAL); in zend_get_target_symbol_table() 3282 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type OPLINE_DC EXECUT… in zend_fetch_static_property_address_ex() 3323 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex() 3336 *retval = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex() 3361 …val **retval, zend_property_info **prop_info, uint32_t cache_slot, int fetch_type, int flags OPLIN… in zend_fetch_static_property_address() argument 3368 if ((fetch_type == BP_VAR_R || fetch_type == BP_VAR_RW) in zend_fetch_static_property_address() 3378 …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 | 1823 int fetch_type = variable 1826 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_var_address_helper, type, fetch_type); 1881 int fetch_type = variable 1884 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_static_prop_helper, type, fetch_type); 8551 uint32_t fetch_type; variable 8573 fetch_type = opline->op1.num; 8578 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" : 8579 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static"); 8584 switch (fetch_type) {
|
H A D | zend_vm_execute.h | 883 int fetch_type = in ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_HANDLER() local 9830 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER() local 14744 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() local 14766 fetch_type = opline->op1.num; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() 14777 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() 17643 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER() local 31753 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() local 31786 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() 39364 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() local 39397 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() [all …]
|
/PHP-8.1/ext/odbc/tests/ |
H A D | odbc_data_source_001.phpt | 28 odbc_data_source(): Argument #2 ($fetch_type) must be either SQL_FETCH_FIRST or SQL_FETCH_NEXT
|
/PHP-8.1/ext/odbc/ |
H A D | odbc.stub.php | 27 function odbc_data_source($odbc, int $fetch_type): array|null|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 | 1215 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local 1221 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION() 1223 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION() 1234 fetch_type, in PHP_FUNCTION()
|
/PHP-8.1/Zend/Optimizer/ |
H A D | zend_dump.c | 80 static void zend_dump_class_fetch_type(uint32_t fetch_type) in zend_dump_class_fetch_type() argument 82 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_dump_class_fetch_type() 102 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_dump_class_fetch_type() 105 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in zend_dump_class_fetch_type() 108 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_dump_class_fetch_type()
|
H A D | zend_inference.c | 2442 int fetch_type = opline->op2.num & ZEND_FETCH_CLASS_MASK; in zend_fetch_static_prop_info() local 2443 switch (fetch_type) { in zend_fetch_static_prop_info()
|
/PHP-8.1/ext/simplexml/ |
H A D | simplexml.c | 628 static zval *sxe_property_get_adr(zend_object *object, zend_string *zname, int fetch_type, void **c… in sxe_property_get_adr() argument
|