calling_scope 2844 Zend/zend_API.c fcc->calling_scope = EG(scope); calling_scope 2857 Zend/zend_API.c fcc->calling_scope = EG(scope)->parent; calling_scope 2871 Zend/zend_API.c fcc->calling_scope = called_scope; calling_scope 2886 Zend/zend_API.c fcc->calling_scope = ce; calling_scope 2892 Zend/zend_API.c instanceof_function(scope, fcc->calling_scope)) { calling_scope 2896 Zend/zend_API.c fcc->called_scope = fcc->calling_scope; calling_scope 2899 Zend/zend_API.c fcc->called_scope = fcc->object ? fcc->object->ce : fcc->calling_scope; calling_scope 2913 Zend/zend_API.c zend_class_entry *ce_org = fcc->calling_scope; calling_scope 2928 Zend/zend_API.c fcc->calling_scope = NULL; calling_scope 2996 Zend/zend_API.c ftable = &fcc->calling_scope->function_table; calling_scope 2997 Zend/zend_API.c if (ce_org && !instanceof_function(ce_org, fcc->calling_scope)) { calling_scope 2998 Zend/zend_API.c if (error) zend_spprintf(error, 0, "class '%s' is not a subclass of '%s'", ZSTR_VAL(ce_org->name), ZSTR_VAL(fcc->calling_scope->name)); calling_scope 3008 Zend/zend_API.c fcc->calling_scope = ce_org; calling_scope 3019 Zend/zend_API.c fcc->calling_scope && calling_scope 3021 Zend/zend_API.c fcc->function_handler = fcc->calling_scope->constructor; calling_scope 3039 Zend/zend_API.c (fcc->calling_scope && calling_scope 3040 Zend/zend_API.c ((fcc->object && fcc->calling_scope->__call) || calling_scope 3041 Zend/zend_API.c (!fcc->object && fcc->calling_scope->__callstatic)))) { calling_scope 3058 Zend/zend_API.c if (fcc->object && fcc->calling_scope == ce_org) { calling_scope 3081 Zend/zend_API.c } else if (fcc->calling_scope) { calling_scope 3082 Zend/zend_API.c if (fcc->calling_scope->get_static_method) { calling_scope 3083 Zend/zend_API.c fcc->function_handler = fcc->calling_scope->get_static_method(fcc->calling_scope, mname); calling_scope 3085 Zend/zend_API.c fcc->function_handler = zend_std_get_static_method(fcc->calling_scope, mname, NULL); calling_scope 3093 Zend/zend_API.c instanceof_function(object->ce, fcc->calling_scope)) { calling_scope 3102 Zend/zend_API.c if (fcc->calling_scope && !call_via_handler) { calling_scope 3105 Zend/zend_API.c zend_spprintf(error, 0, "cannot call abstract method %s::%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); calling_scope 3108 Zend/zend_API.c zend_throw_error(NULL, "Cannot call abstract method %s::%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); calling_scope 3126 Zend/zend_API.c zend_spprintf(error, 0, "non-static method %s::%s() %s be called statically", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name), verb); calling_scope 3132 Zend/zend_API.c zend_throw_error(NULL, "Non-static method %s::%s() %s be called statically", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name), verb); calling_scope 3134 Zend/zend_API.c zend_error(severity, "Non-static method %s::%s() %s be called statically", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name), verb); calling_scope 3145 Zend/zend_API.c zend_spprintf(error, 0, "cannot access private method %s::%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); calling_scope 3155 Zend/zend_API.c zend_spprintf(error, 0, "cannot access protected method %s::%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); calling_scope 3163 Zend/zend_API.c if (fcc->calling_scope) { calling_scope 3164 Zend/zend_API.c if (error) zend_spprintf(error, 0, "class '%s' does not have a method '%s'", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(mname)); calling_scope 3198 Zend/zend_API.c fcc->calling_scope = NULL; calling_scope 3214 Zend/zend_API.c fcc->calling_scope = object->ce; calling_scope 3218 Zend/zend_API.c *callable_name = zend_string_alloc(ZSTR_LEN(fcc->calling_scope->name) + Z_STRLEN_P(callable) + sizeof("::") - 1, 0); calling_scope 3220 Zend/zend_API.c memcpy(ptr, ZSTR_VAL(fcc->calling_scope->name), ZSTR_LEN(fcc->calling_scope->name)); calling_scope 3221 Zend/zend_API.c ptr += ZSTR_LEN(fcc->calling_scope->name); calling_scope 3230 Zend/zend_API.c fcc->called_scope = fcc->calling_scope; calling_scope 3297 Zend/zend_API.c fcc->calling_scope = Z_OBJCE_P(obj); /* TBFixed: what if it's overloaded? */ calling_scope 3304 Zend/zend_API.c *callable_name = zend_string_alloc(ZSTR_LEN(fcc->calling_scope->name) + Z_STRLEN_P(method) + sizeof("::") - 1, 0); calling_scope 3306 Zend/zend_API.c memcpy(ptr, ZSTR_VAL(fcc->calling_scope->name), ZSTR_LEN(fcc->calling_scope->name)); calling_scope 3307 Zend/zend_API.c ptr += ZSTR_LEN(fcc->calling_scope->name); calling_scope 3314 Zend/zend_API.c fcc->called_scope = fcc->calling_scope; calling_scope 3352 Zend/zend_API.c if (Z_OBJ_HANDLER_P(callable, get_closure) && Z_OBJ_HANDLER_P(callable, get_closure)(callable, &fcc->calling_scope, &fcc->function_handler, &fcc->object) == SUCCESS) { calling_scope 3353 Zend/zend_API.c fcc->called_scope = fcc->calling_scope; calling_scope 3392 Zend/zend_API.c if (Z_TYPE_P(callable) == IS_STRING && fcc.calling_scope) { calling_scope 3395 Zend/zend_API.c add_next_index_str(callable, zend_string_copy(fcc.calling_scope->name)); calling_scope 3420 Zend/zend_API.c fci->function_table = fcc->calling_scope ? &fcc->calling_scope->function_table : EG(function_table); calling_scope 59 Zend/zend_API.h zend_class_entry *calling_scope; calling_scope 692 Zend/zend_execute_API.c zend_class_entry *calling_scope = NULL; calling_scope 775 Zend/zend_execute_API.c calling_scope = fci_cache->calling_scope; calling_scope 842 Zend/zend_execute_API.c EG(scope) = calling_scope; calling_scope 1039 Zend/zend_execute_API.c fcall_cache.calling_scope = NULL; calling_scope 89 Zend/zend_interfaces.c fcic.calling_scope = obj_ce; calling_scope 1318 ext/mysqli/mysqli.c fcc.calling_scope = EG(scope); calling_scope 452 ext/pdo/pdo_dbh.c fcc.calling_scope = EG(scope); calling_scope 755 ext/pdo/pdo_stmt.c fcc->calling_scope = EG(scope); calling_scope 2816 ext/pgsql/pgsql.c fcc.calling_scope = EG(scope); calling_scope 1404 ext/reflection/php_reflection.c fcc.calling_scope = ce_ptr; calling_scope 1939 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 1999 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 3230 ext/reflection/php_reflection.c fcc.calling_scope = obj_ce; calling_scope 3337 ext/reflection/php_reflection.c fcc.calling_scope = obj_ce; calling_scope 4635 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 4739 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 479 ext/spl/php_spl.c alfi.ce = fcc.calling_scope; calling_scope 530 ext/spl/php_spl.c alfi.ce = fcc.calling_scope; calling_scope 2089 ext/spl/spl_directory.c fcic.calling_scope = NULL; calling_scope 76 ext/spl/spl_engine.h fcc.calling_scope = EG(scope); calling_scope 4839 ext/standard/basic_functions.c if (called_scope && fci_cache.calling_scope && calling_scope 4840 ext/standard/basic_functions.c instanceof_function(called_scope, fci_cache.calling_scope)) { calling_scope 4867 ext/standard/basic_functions.c if (called_scope && fci_cache.calling_scope && calling_scope 4868 ext/standard/basic_functions.c instanceof_function(called_scope, fci_cache.calling_scope)) { calling_scope 313 main/streams/userspace.c fcc.calling_scope = EG(scope);