calling_scope 2698 Zend/zend_API.c fcc->calling_scope = EG(scope); calling_scope 2712 Zend/zend_API.c fcc->calling_scope = EG(scope)->parent; calling_scope 2725 Zend/zend_API.c fcc->calling_scope = EG(called_scope); calling_scope 2735 Zend/zend_API.c fcc->calling_scope = *pce; calling_scope 2738 Zend/zend_API.c instanceof_function(scope, fcc->calling_scope TSRMLS_CC)) { calling_scope 2742 Zend/zend_API.c fcc->called_scope = fcc->object_ptr ? Z_OBJCE_P(fcc->object_ptr) : fcc->calling_scope; calling_scope 2756 Zend/zend_API.c zend_class_entry *ce_org = fcc->calling_scope; calling_scope 2769 Zend/zend_API.c fcc->calling_scope = NULL; calling_scope 2817 Zend/zend_API.c ftable = &fcc->calling_scope->function_table; calling_scope 2818 Zend/zend_API.c if (ce_org && !instanceof_function(ce_org, fcc->calling_scope TSRMLS_CC)) { calling_scope 2819 Zend/zend_API.c if (error) zend_spprintf(error, 0, "class '%s' is not a subclass of '%s'", ce_org->name, fcc->calling_scope->name); calling_scope 2828 Zend/zend_API.c fcc->calling_scope = ce_org; calling_scope 2839 Zend/zend_API.c fcc->calling_scope && calling_scope 2842 Zend/zend_API.c fcc->function_handler = fcc->calling_scope->constructor; calling_scope 2860 Zend/zend_API.c (fcc->calling_scope && calling_scope 2861 Zend/zend_API.c ((fcc->object_ptr && fcc->calling_scope->__call) || calling_scope 2862 Zend/zend_API.c (!fcc->object_ptr && fcc->calling_scope->__callstatic)))) { calling_scope 2879 Zend/zend_API.c if (fcc->object_ptr && fcc->calling_scope == ce_org) { calling_scope 2910 Zend/zend_API.c } else if (fcc->calling_scope) { calling_scope 2911 Zend/zend_API.c if (fcc->calling_scope->get_static_method) { calling_scope 2912 Zend/zend_API.c fcc->function_handler = fcc->calling_scope->get_static_method(fcc->calling_scope, mname, mlen TSRMLS_CC); calling_scope 2914 Zend/zend_API.c fcc->function_handler = zend_std_get_static_method(fcc->calling_scope, mname, mlen, NULL TSRMLS_CC); calling_scope 2921 Zend/zend_API.c instanceof_function(Z_OBJCE_P(EG(This)), fcc->calling_scope TSRMLS_CC)) { calling_scope 2929 Zend/zend_API.c if (fcc->calling_scope && !call_via_handler) { calling_scope 2932 Zend/zend_API.c zend_spprintf(error, 0, "cannot call abstract method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); calling_scope 2935 Zend/zend_API.c zend_error(E_ERROR, "Cannot call abstract method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); calling_scope 2951 Zend/zend_API.c if (EG(This) && instanceof_function(Z_OBJCE_P(EG(This)), fcc->calling_scope TSRMLS_CC)) { calling_scope 2954 Zend/zend_API.c zend_spprintf(error, 0, "non-static method %s::%s() %s be called statically, assuming $this from compatible context %s", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb, Z_OBJCE_P(EG(This))->name); calling_scope 2959 Zend/zend_API.c zend_error(severity, "Non-static method %s::%s() %s be called statically, assuming $this from compatible context %s", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb, Z_OBJCE_P(EG(This))->name); calling_scope 2963 Zend/zend_API.c zend_spprintf(error, 0, "non-static method %s::%s() %s be called statically", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb); calling_scope 2968 Zend/zend_API.c zend_error(severity, "Non-static method %s::%s() %s be called statically", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb); calling_scope 2979 Zend/zend_API.c zend_spprintf(error, 0, "cannot access private method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); calling_scope 2989 Zend/zend_API.c zend_spprintf(error, 0, "cannot access protected method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); calling_scope 2997 Zend/zend_API.c if (fcc->calling_scope) { calling_scope 2998 Zend/zend_API.c if (error) zend_spprintf(error, 0, "class '%s' does not have a method '%s'", fcc->calling_scope->name, mname); calling_scope 3035 Zend/zend_API.c fcc->calling_scope = NULL; calling_scope 3038 Zend/zend_API.c fcc->calling_scope = NULL; calling_scope 3054 Zend/zend_API.c fcc->calling_scope = Z_OBJCE_P(object_ptr); calling_scope 3058 Zend/zend_API.c *callable_name_len = fcc->calling_scope->name_length + Z_STRLEN_P(callable) + sizeof("::") - 1; calling_scope 3060 Zend/zend_API.c memcpy(ptr, fcc->calling_scope->name, fcc->calling_scope->name_length); calling_scope 3061 Zend/zend_API.c ptr += fcc->calling_scope->name_length; calling_scope 3071 Zend/zend_API.c fcc->called_scope = fcc->calling_scope; calling_scope 3131 Zend/zend_API.c fcc->calling_scope = Z_OBJCE_PP(obj); /* TBFixed: what if it's overloaded? */ calling_scope 3138 Zend/zend_API.c *callable_name_len = fcc->calling_scope->name_length + Z_STRLEN_PP(method) + sizeof("::") - 1; calling_scope 3140 Zend/zend_API.c memcpy(ptr, fcc->calling_scope->name, fcc->calling_scope->name_length); calling_scope 3141 Zend/zend_API.c ptr += fcc->calling_scope->name_length; calling_scope 3148 Zend/zend_API.c fcc->called_scope = fcc->calling_scope; calling_scope 3186 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_ptr TSRMLS_CC) == SUCCESS) { calling_scope 3187 Zend/zend_API.c fcc->called_scope = fcc->calling_scope; calling_scope 3227 Zend/zend_API.c if (Z_TYPE_P(callable) == IS_STRING && fcc.calling_scope) { calling_scope 3230 Zend/zend_API.c add_next_index_string(callable, fcc.calling_scope->name, 1); calling_scope 3256 Zend/zend_API.c fci->function_table = fcc->calling_scope ? &fcc->calling_scope->function_table : EG(function_table); calling_scope 58 Zend/zend_API.h zend_class_entry *calling_scope; calling_scope 630 Zend/zend_execute_API.c zend_class_entry *calling_scope = NULL; calling_scope 697 Zend/zend_execute_API.c calling_scope = fci_cache->calling_scope; calling_scope 775 Zend/zend_execute_API.c EG(scope) = calling_scope; calling_scope 1000 Zend/zend_execute_API.c fcall_cache.calling_scope = NULL; calling_scope 86 Zend/zend_interfaces.c fcic.calling_scope = obj_ce; calling_scope 2197 ext/mysql/php_mysql.c fcc.calling_scope = EG(scope); calling_scope 1328 ext/mysqli/mysqli.c fcc.calling_scope = EG(scope); calling_scope 484 ext/pdo/pdo_dbh.c fcc.calling_scope = EG(scope); calling_scope 767 ext/pdo/pdo_stmt.c fcc->calling_scope = EG(scope); calling_scope 2817 ext/pgsql/pgsql.c fcc.calling_scope = EG(scope); calling_scope 1442 ext/reflection/php_reflection.c fcc.calling_scope = ce_ptr; calling_scope 1958 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 2025 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 2958 ext/reflection/php_reflection.c fcc.calling_scope = obj_ce; calling_scope 3067 ext/reflection/php_reflection.c fcc.calling_scope = obj_ce; calling_scope 4311 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 4416 ext/reflection/php_reflection.c fcc.calling_scope = EG(scope); calling_scope 496 ext/spl/php_spl.c alfi.ce = fcc.calling_scope; calling_scope 539 ext/spl/php_spl.c alfi.ce = fcc.calling_scope; calling_scope 2132 ext/spl/spl_directory.c fcic.calling_scope = NULL; calling_scope 77 ext/spl/spl_engine.h fcc.calling_scope = EG(scope); calling_scope 4896 ext/standard/basic_functions.c instanceof_function(EG(called_scope), fci_cache.calling_scope TSRMLS_CC)) { calling_scope 4926 ext/standard/basic_functions.c instanceof_function(EG(called_scope), fci_cache.calling_scope TSRMLS_CC)) { calling_scope 317 main/streams/userspace.c fcc.calling_scope = EG(scope);