/php-src/Zend/ |
H A D | zend_execute_API.c | 242 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_throw_or_error() 1679 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in report_class_fetch_error() 1684 if (!(fetch_type & ZEND_FETCH_CLASS_EXCEPTION)) { in report_class_fetch_error() 1702 uint32_t fetch_sub_type = fetch_type & ZEND_FETCH_CLASS_MASK; in zend_fetch_class() 1738 ce = zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class() 1740 report_class_fetch_error(class_name, fetch_type); in zend_fetch_class() 1748 zend_string *class_name, uint32_t fetch_type, zend_class_entry *scope) in zend_fetch_class_with_scope() argument 1751 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_fetch_class_with_scope() 1772 ce = zend_lookup_class_ex(class_name, NULL, fetch_type); in zend_fetch_class_with_scope() 1774 report_class_fetch_error(class_name, fetch_type); in zend_fetch_class_with_scope() [all …]
|
H A D | zend_execute.h | 405 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, uint32_t fetch_type); 406 ZEND_API zend_class_entry *zend_fetch_class_with_scope(zend_string *class_name, uint32_t fetch_type… 407 …entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *lcname, uint32_t fetch_type); 438 ZEND_API zval* ZEND_FASTCALL zend_fetch_static_property(zend_execute_data *ex, int fetch_type);
|
H A D | zend_compile.c | 1732 return fetch_type == ZEND_FETCH_CLASS_DEFAULT in class_name_refers_to_active_ce() 1791 uint32_t fetch_type; in zend_try_compile_const_expr_resolve_class_name() local 1807 switch (fetch_type) { in zend_try_compile_const_expr_resolve_class_name() 2848 uint32_t fetch_type; in zend_compile_class_ref() local 2890 if (ZEND_FETCH_CLASS_DEFAULT == fetch_type) { in zend_compile_class_ref() 2896 result->u.op.num = fetch_type | fetch_flags; in zend_compile_class_ref() 11060 int fetch_type; in zend_compile_const_expr_class_const() local 11073 if (ZEND_FETCH_CLASS_STATIC == fetch_type) { in zend_compile_const_expr_class_const() 11105 switch (fetch_type) { in zend_compile_const_expr_class_name() 11111 ast->attr = fetch_type; in zend_compile_const_expr_class_name() [all …]
|
H A D | zend_execute.c | 2374 static zend_always_inline HashTable *zend_get_target_symbol_table(int fetch_type EXECUTE_DATA_DC) in zend_get_target_symbol_table() 2378 if (EXPECTED(fetch_type & (ZEND_FETCH_GLOBAL_LOCK | ZEND_FETCH_GLOBAL))) { in zend_get_target_symbol_table() 2381 ZEND_ASSERT(fetch_type & ZEND_FETCH_LOCAL); in zend_get_target_symbol_table() 3535 …ty_address_ex(zend_property_info **prop_info, uint32_t cache_slot, int fetch_type OPLINE_DC EXECUT… in zend_fetch_static_property_address_ex() 3577 result = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex() 3590 result = zend_std_get_static_property_with_info(ce, name, fetch_type, &property_info); in zend_fetch_static_property_address_ex() 3626 if ((fetch_type == BP_VAR_R || fetch_type == BP_VAR_RW) in zend_fetch_static_property_address() 3635 …result = zend_fetch_static_property_address_ex(&property_info, cache_slot, fetch_type OPLINE_CC EX… in zend_fetch_static_property_address() 3653 ZEND_API zval* ZEND_FASTCALL zend_fetch_static_property(zend_execute_data *ex, int fetch_type) { in zend_fetch_static_property() argument 3672 if (fetch_type == BP_VAR_W) { in zend_fetch_static_property() [all …]
|
H A D | zend_vm_def.h | 1818 int fetch_type = variable 1821 ZEND_VM_DISPATCH_TO_HELPER(zend_fetch_var_address_helper, type, fetch_type); 8793 uint32_t fetch_type; variable 8815 fetch_type = opline->op1.num; 8820 fetch_type == ZEND_FETCH_CLASS_SELF ? "self" : 8821 fetch_type == ZEND_FETCH_CLASS_PARENT ? "parent" : "static"); 8826 switch (fetch_type) {
|
H A D | zend_vm_execute.h | 10554 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER() local 15559 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() local 15581 fetch_type = opline->op1.num; in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() 15592 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() 18586 int fetch_type = in ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER() local 33438 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() local 33460 fetch_type = opline->op1.num; in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() 33471 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() 41654 uint32_t fetch_type; in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() local 41687 switch (fetch_type) { in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() [all …]
|
/php-src/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-src/Zend/Optimizer/ |
H A D | zend_dump.c | 85 static void zend_dump_class_fetch_type(uint32_t fetch_type) in zend_dump_class_fetch_type() argument 87 switch (fetch_type & ZEND_FETCH_CLASS_MASK) { in zend_dump_class_fetch_type() 107 if (fetch_type & ZEND_FETCH_CLASS_NO_AUTOLOAD) { in zend_dump_class_fetch_type() 110 if (fetch_type & ZEND_FETCH_CLASS_SILENT) { in zend_dump_class_fetch_type() 113 if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) { in zend_dump_class_fetch_type()
|
H A D | zend_optimizer.c | 890 int fetch_type = opline->op1.num & ZEND_FETCH_CLASS_MASK; in zend_fetch_class_const_info() local 891 if (fetch_type == ZEND_FETCH_CLASS_SELF) { in zend_fetch_class_const_info() 893 } else if (fetch_type == ZEND_FETCH_CLASS_STATIC) { in zend_fetch_class_const_info() 896 } else if (fetch_type == ZEND_FETCH_CLASS_PARENT) { in zend_fetch_class_const_info()
|
H A D | zend_inference.c | 2458 int fetch_type = opline->op2.num & ZEND_FETCH_CLASS_MASK; in zend_fetch_static_prop_info() local 2459 switch (fetch_type) { in zend_fetch_static_prop_info()
|
/php-src/ext/odbc/ |
H A D | odbc.stub.php | 345 function odbc_data_source(Odbc\Connection $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 | 1235 SQLSMALLINT len1=0, len2=0, fetch_type; in PHP_FUNCTION() local 1241 fetch_type = (SQLSMALLINT) zv_fetch_type; in PHP_FUNCTION() 1243 if (!(fetch_type == SQL_FETCH_FIRST || fetch_type == SQL_FETCH_NEXT)) { in PHP_FUNCTION() 1253 fetch_type, in PHP_FUNCTION()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_ir.c | 15843 int fetch_type; local 15873 fetch_type = BP_VAR_R; 15876 fetch_type = BP_VAR_IS; 15879 fetch_type = BP_VAR_W; 15882 fetch_type = BP_VAR_RW; 15885 fetch_type = BP_VAR_UNSET; 15898 if (fetch_type == BP_VAR_R || fetch_type == BP_VAR_RW) { 15930 } else if (fetch_type == BP_VAR_W) { 15966 …LL_2(IR_ADDR, ir_CONST_FC_FUNC(zend_fetch_static_property), jit_FP(jit), ir_CONST_I32(fetch_type)); 15973 if (fetch_type == BP_VAR_R || fetch_type == BP_VAR_IS) {
|
/php-src/ext/simplexml/ |
H A D | simplexml.c | 621 static zval *sxe_property_get_adr(zend_object *object, zend_string *zname, int fetch_type, void **c… in sxe_property_get_adr() argument
|