Home
last modified time | relevance | path

Searched refs:called_scope (Results 1 – 23 of 23) sorted by relevance

/PHP-7.3/Zend/
H A Dzend_closures.h35 …, zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr…
36 …, zend_function *op_array, zend_class_entry *scope, zend_class_entry *called_scope, zval *this_ptr…
H A Dzend_closures.c39 zend_class_entry *called_scope; member
153 fci_cache.called_scope = newobj->ce; in ZEND_METHOD()
183 zend_class_entry *ce, *called_scope; in ZEND_METHOD() local
217 called_scope = Z_OBJCE_P(newthis); in ZEND_METHOD()
219 called_scope = ce; in ZEND_METHOD()
222 zend_create_closure(return_value, &closure->func, ce, called_scope, newthis); in ZEND_METHOD()
295 zend_create_fake_closure(return_value, mptr, mptr->common.scope, fcc.called_scope, NULL); in zend_create_closure_from_callable()
475 closure->func.common.scope, closure->called_scope, &closure->this_ptr); in zend_closure_clone()
484 *ce_ptr = closure->called_scope; in zend_closure_get_closure()
722 closure->called_scope = called_scope; in zend_create_closure()
[all …]
H A Dzend_execute.h175 … call_info, zend_function *func, uint32_t num_args, zend_class_entry *called_scope, zend_object *o… in zend_vm_init_call_frame() argument
182 Z_CE(call->This) = called_scope; in zend_vm_init_call_frame()
188 … call_info, zend_function *func, uint32_t num_args, zend_class_entry *called_scope, zend_object *o… in zend_vm_stack_push_call_frame_ex() argument
197 …zend_vm_init_call_frame(call, call_info | ZEND_CALL_ALLOCATED, func, num_args, called_scope, objec… in zend_vm_stack_push_call_frame_ex()
201 zend_vm_init_call_frame(call, call_info, func, num_args, called_scope, object); in zend_vm_stack_push_call_frame_ex()
216 … call_info, zend_function *func, uint32_t num_args, zend_class_entry *called_scope, zend_object *o… in zend_vm_stack_push_call_frame() argument
221 func, num_args, called_scope, object); in zend_vm_stack_push_call_frame()
H A Dzend_interfaces.c90 fcic.called_scope = Z_OBJCE_P(object); in zend_call_method()
92 zend_class_entry *called_scope = zend_get_called_scope(EG(current_execute_data)); in zend_call_method() local
95 (!called_scope || in zend_call_method()
96 !instanceof_function(called_scope, obj_ce))) { in zend_call_method()
97 fcic.called_scope = obj_ce; in zend_call_method()
99 fcic.called_scope = called_scope; in zend_call_method()
H A Dzend_objects.c156 fcic.called_scope = object->ce; in zend_objects_destroy_object()
257 fcic.called_scope = new_object->ce; in zend_objects_clone_members()
H A Dzend_execute.c2926 zend_class_entry *called_scope; in zend_init_dynamic_call_string() local
2948 if (called_scope->get_static_method) { in zend_init_dynamic_call_string()
2949 fbc = called_scope->get_static_method(called_scope, mname); in zend_init_dynamic_call_string()
2992 called_scope = NULL; in zend_init_dynamic_call_string()
2996 fbc, num_args, called_scope, NULL); in zend_init_dynamic_call_string()
3003 zend_class_entry *called_scope; in zend_init_dynamic_call_object() local
3031 fbc, num_args, called_scope, object); in zend_init_dynamic_call_object()
3038 zend_class_entry *called_scope; in zend_init_dynamic_call_array() local
3073 fbc = called_scope->get_static_method(called_scope, Z_STR_P(method)); in zend_init_dynamic_call_array()
3090 called_scope = Z_OBJCE_P(obj); in zend_init_dynamic_call_array()
[all …]
H A Dzend_API.c2951 if (!called_scope) { in zend_is_callable_check_class()
2954 fcc->called_scope = called_scope; in zend_is_callable_check_class()
2955 fcc->calling_scope = called_scope; in zend_is_callable_check_class()
2978 fcc->called_scope = object->ce; in zend_is_callable_check_class()
2980 fcc->called_scope = ce; in zend_is_callable_check_class()
2983 fcc->called_scope = fcc->object ? fcc->object->ce : ce; in zend_is_callable_check_class()
3258 fcc->called_scope = fcc->object->ce; in zend_is_callable_check_func()
3353 fcc->called_scope = NULL; in zend_is_callable_impl()
3366 fcc->called_scope = fcc->calling_scope; in zend_is_callable_impl()
3422 fcc->called_scope = fcc->calling_scope; in zend_is_callable_impl()
[all …]
H A Dzend_object_handlers.c208 fcic.called_scope = ce; in zend_std_call_getter()
245 fcic.called_scope = ce; in zend_std_call_setter()
281 fcic.called_scope = ce; in zend_std_call_unsetter()
318 fcic.called_scope = ce; in zend_std_call_issetter()
H A Dzend_vm_def.h3004 zend_class_entry *called_scope; variable
3073 called_scope = obj->ce;
3379 zend_class_entry *called_scope; variable
3388 called_scope = fcc.called_scope;
3433 called_scope = NULL;
7094 zend_class_entry *called_scope; variable
7101 called_scope = Z_OBJCE(EX(This));
7109 called_scope = Z_CE(EX(This));
7665 zend_class_entry *called_scope, *scope; variable
7696 called_scope = Z_OBJCE(EX(This));
[all …]
H A Dzend_builtin_functions.c969 zend_class_entry *called_scope; in ZEND_FUNCTION() local
975 called_scope = zend_get_called_scope(execute_data); in ZEND_FUNCTION()
976 if (called_scope) { in ZEND_FUNCTION()
977 RETURN_STR_COPY(called_scope->name); in ZEND_FUNCTION()
H A Dzend_execute_API.c684 func, fci->param_count, fci_cache->called_scope, fci->object); in zend_call_function()
923 fcall_cache.called_scope = NULL; in zend_lookup_class_ex()
H A Dzend_vm_execute.h5124 called_scope = obj->ce;
5355 called_scope = fcc.called_scope;
5399 called_scope = NULL;
7306 called_scope = obj->ce;
7537 called_scope = fcc.called_scope;
7582 called_scope = NULL;
10399 called_scope = obj->ce;
10630 called_scope = fcc.called_scope;
10674 called_scope = NULL;
13888 called_scope = obj->ce;
[all …]
H A Dzend_API.h55 zend_class_entry *called_scope; member
/PHP-7.3/ext/spl/
H A Dspl_engine.h71 fcc.called_scope = pce; in spl_instantiate_arg_n()
H A Dphp_spl.c407 zend_class_entry *called_scope = zend_get_called_scope(execute_data); in PHP_FUNCTION() local
436 (!called_scope || in PHP_FUNCTION()
437 !instanceof_function(called_scope, alfi->ce))) { in PHP_FUNCTION()
438 fcic.called_scope = alfi->ce; in PHP_FUNCTION()
440 fcic.called_scope = called_scope; in PHP_FUNCTION()
445 fcic.called_scope = Z_OBJCE(alfi->obj); in PHP_FUNCTION()
479 fcall_cache.called_scope = NULL; in PHP_FUNCTION()
H A Dspl_directory.c2098 fcic.called_scope = NULL; in spl_filesystem_file_call()
/PHP-7.3/ext/standard/
H A Dbasic_functions.c4960 zend_class_entry *called_scope; local
4974 called_scope = zend_get_called_scope(execute_data);
4975 if (called_scope && fci_cache.calling_scope &&
4976 instanceof_function(called_scope, fci_cache.calling_scope)) {
4977 fci_cache.called_scope = called_scope;
4996 zend_class_entry *called_scope; local
5006 called_scope = zend_get_called_scope(execute_data);
5007 if (called_scope && fci_cache.calling_scope &&
5008 instanceof_function(called_scope, fci_cache.calling_scope)) {
5009 fci_cache.called_scope = called_scope;
/PHP-7.3/ext/reflection/
H A Dphp_reflection.c1338 fcc.called_scope = Z_OBJCE(reflector); in _reflection_export()
1862 fcc.called_scope = NULL; in ZEND_METHOD()
1867 &intern->obj, &fcc.called_scope, &fcc.function_handler, &fcc.object); in ZEND_METHOD()
1925 fcc.called_scope = NULL; in ZEND_METHOD()
1930 &intern->obj, &fcc.called_scope, &fcc.function_handler, &fcc.object); in ZEND_METHOD()
3176 fcc.called_scope = intern->ce; in reflection_method_invoke()
4717 fcc.called_scope = Z_OBJCE_P(return_value); in ZEND_METHOD()
4818 fcc.called_scope = Z_OBJCE_P(return_value); in ZEND_METHOD()
/PHP-7.3/ext/pdo/
H A Dpdo_dbh.c472 fcc.called_scope = Z_OBJCE_P(object); in pdo_stmt_construct()
H A Dpdo_stmt.c744 fcc->called_scope = ce; in do_fetch_class_prepare()
/PHP-7.3/ext/mysqli/
H A Dmysqli.c1299 fcc.called_scope = Z_OBJCE_P(return_value); in php_mysqli_fetch_into_hash()
/PHP-7.3/main/streams/
H A Duserspace.c316 fcc.called_scope = Z_OBJCE_P(object); in user_stream_create_object()
/PHP-7.3/ext/pgsql/
H A Dpgsql.c2851 fcc.called_scope = Z_OBJCE_P(return_value);

Completed in 413 milliseconds