function_handler 2929 Zend/zend_API.c 	fcc->function_handler = NULL;
function_handler 2942 Zend/zend_API.c 		if (EXPECTED((fcc->function_handler = zend_hash_find_ptr(EG(function_table), lmname)) != NULL)) {
function_handler 2955 Zend/zend_API.c 			if ((fcc->function_handler = zend_hash_find_ptr(EG(function_table), lmname)) != NULL) {
function_handler 3021 Zend/zend_API.c 		fcc->function_handler = fcc->calling_scope->constructor;
function_handler 3022 Zend/zend_API.c 		if (fcc->function_handler) {
function_handler 3025 Zend/zend_API.c 	} else if ((fcc->function_handler = zend_hash_find_ptr(ftable, lmname)) != NULL) {
function_handler 3027 Zend/zend_API.c 		if ((fcc->function_handler->op_array.fn_flags & ZEND_ACC_CHANGED) &&
function_handler 3029 Zend/zend_API.c 		    instanceof_function(fcc->function_handler->common.scope, EG(scope))) {
function_handler 3035 Zend/zend_API.c 				fcc->function_handler = priv_fbc;
function_handler 3042 Zend/zend_API.c 			if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) {
function_handler 3043 Zend/zend_API.c 				if (!zend_check_private(fcc->function_handler, fcc->object ? fcc->object->ce : EG(scope), lmname)) {
function_handler 3045 Zend/zend_API.c 					fcc->function_handler = NULL;
function_handler 3048 Zend/zend_API.c 			} else if (fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED) {
function_handler 3049 Zend/zend_API.c 				if (!zend_check_protected(fcc->function_handler->common.scope, EG(scope))) {
function_handler 3051 Zend/zend_API.c 					fcc->function_handler = NULL;
function_handler 3060 Zend/zend_API.c 				fcc->function_handler = zend_get_call_trampoline_func(ce_org, mname, 0);
function_handler 3064 Zend/zend_API.c 				fcc->function_handler = fcc->object->handlers->get_method(&fcc->object, mname, NULL);
function_handler 3065 Zend/zend_API.c 				if (fcc->function_handler) {
function_handler 3067 Zend/zend_API.c 					    (!fcc->function_handler->common.scope ||
function_handler 3068 Zend/zend_API.c 					     !instanceof_function(ce_org, fcc->function_handler->common.scope))) {
function_handler 3069 Zend/zend_API.c 						if (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) {
function_handler 3070 Zend/zend_API.c 							if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 3071 Zend/zend_API.c 								zend_string_release(fcc->function_handler->common.function_name);
function_handler 3073 Zend/zend_API.c 							zend_free_trampoline(fcc->function_handler);
function_handler 3077 Zend/zend_API.c 						call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0;
function_handler 3083 Zend/zend_API.c 				fcc->function_handler = fcc->calling_scope->get_static_method(fcc->calling_scope, mname);
function_handler 3085 Zend/zend_API.c 				fcc->function_handler = zend_std_get_static_method(fcc->calling_scope, mname, NULL);
function_handler 3087 Zend/zend_API.c 			if (fcc->function_handler) {
function_handler 3089 Zend/zend_API.c 				call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0;
function_handler 3103 Zend/zend_API.c 			if (!fcc->object && (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT)) {
function_handler 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));
function_handler 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));
function_handler 3111 Zend/zend_API.c 			} else if (!fcc->object && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) {
function_handler 3114 Zend/zend_API.c 				if (fcc->function_handler->common.fn_flags & ZEND_ACC_ALLOW_STATIC) {
function_handler 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);
function_handler 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);
function_handler 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);
function_handler 3139 Zend/zend_API.c 				if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) {
function_handler 3140 Zend/zend_API.c 					if (!zend_check_private(fcc->function_handler, fcc->object ? fcc->object->ce : EG(scope), lmname)) {
function_handler 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));
function_handler 3149 Zend/zend_API.c 				} else if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED)) {
function_handler 3150 Zend/zend_API.c 					if (!zend_check_protected(fcc->function_handler->common.scope, EG(scope))) {
function_handler 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));
function_handler 3200 Zend/zend_API.c 	fcc->function_handler = NULL;
function_handler 3236 Zend/zend_API.c 			    fcc->function_handler &&
function_handler 3237 Zend/zend_API.c 				((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) ||
function_handler 3238 Zend/zend_API.c 			     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
function_handler 3239 Zend/zend_API.c 			     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
function_handler 3240 Zend/zend_API.c 				if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 3241 Zend/zend_API.c 					zend_string_release(fcc->function_handler->common.function_name);
function_handler 3243 Zend/zend_API.c 				zend_free_trampoline(fcc->function_handler);
function_handler 3323 Zend/zend_API.c 					    fcc->function_handler &&
function_handler 3324 Zend/zend_API.c 						((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) ||
function_handler 3325 Zend/zend_API.c 					     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
function_handler 3326 Zend/zend_API.c 					     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
function_handler 3327 Zend/zend_API.c 						if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 3328 Zend/zend_API.c 							zend_string_release(fcc->function_handler->common.function_name);
function_handler 3330 Zend/zend_API.c 						zend_free_trampoline(fcc->function_handler);
function_handler 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) {
function_handler 3396 Zend/zend_API.c 			add_next_index_str(callable, zend_string_copy(fcc.function_handler->common.function_name));
function_handler 3398 Zend/zend_API.c 		if (fcc.function_handler &&
function_handler 3399 Zend/zend_API.c 			((fcc.function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) ||
function_handler 3400 Zend/zend_API.c 		     fcc.function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
function_handler 3401 Zend/zend_API.c 		     fcc.function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
function_handler 3402 Zend/zend_API.c 			if (fcc.function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 3403 Zend/zend_API.c 				zend_string_release(fcc.function_handler->common.function_name);
function_handler 3405 Zend/zend_API.c 			zend_free_trampoline(fcc.function_handler);
function_handler   58 Zend/zend_API.h 	zend_function *function_handler;
function_handler  155 Zend/zend_closures.c 	if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_GENERATOR) {
function_handler  157 Zend/zend_closures.c 		zend_create_closure(&new_closure, fci_cache.function_handler, Z_OBJCE_P(newthis), closure->called_scope, newthis);
function_handler  159 Zend/zend_closures.c 		fci_cache.function_handler = &closure->func;
function_handler  161 Zend/zend_closures.c 		memcpy(&my_function, fci_cache.function_handler, fci_cache.function_handler->type == ZEND_USER_FUNCTION ? sizeof(zend_op_array) : sizeof(zend_internal_function));
function_handler  164 Zend/zend_closures.c 		fci_cache.function_handler = &my_function;
function_handler  177 Zend/zend_closures.c 	if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_GENERATOR) {
function_handler  772 Zend/zend_execute_API.c 	func = fci_cache->function_handler;
function_handler 1038 Zend/zend_execute_API.c 	fcall_cache.function_handler = EG(autoload_func);
function_handler   79 Zend/zend_interfaces.c 			if ((fcic.function_handler = zend_hash_find_ptr(function_table, Z_STR(fci.function_name))) == NULL) {
function_handler   84 Zend/zend_interfaces.c 				*fn_proxy = fcic.function_handler;
function_handler   87 Zend/zend_interfaces.c 			fcic.function_handler = *fn_proxy;
function_handler 3410 Zend/zend_vm_def.h 		func = fcc.function_handler;
function_handler 5764 Zend/zend_vm_execute.h 		func = fcc.function_handler;
function_handler 9510 Zend/zend_vm_execute.h 		func = fcc.function_handler;
function_handler 11333 Zend/zend_vm_execute.h 		func = fcc.function_handler;
function_handler 1317 ext/mysqli/mysqli.c 			fcc.function_handler = ce->constructor;
function_handler  451 ext/pdo/pdo_dbh.c 		fcc.function_handler = dbstmt_ce->constructor;
function_handler  754 ext/pdo/pdo_stmt.c 		fcc->function_handler = ce->constructor;
function_handler 2815 ext/pgsql/pgsql.c 			fcc.function_handler = ce->constructor;
function_handler 1403 ext/reflection/php_reflection.c 	fcc.function_handler = ce_ptr->constructor;
function_handler 1938 ext/reflection/php_reflection.c 	fcc.function_handler = fptr;
function_handler 1998 ext/reflection/php_reflection.c 	fcc.function_handler = fptr;
function_handler 3229 ext/reflection/php_reflection.c 	fcc.function_handler = mptr;
function_handler 3336 ext/reflection/php_reflection.c 	fcc.function_handler = mptr;
function_handler 3345 ext/reflection/php_reflection.c 		fcc.function_handler = _copy_function(mptr);
function_handler 4634 ext/reflection/php_reflection.c 		fcc.function_handler = constructor;
function_handler 4738 ext/reflection/php_reflection.c 		fcc.function_handler = constructor;
function_handler  480 ext/spl/php_spl.c 			alfi.func_ptr = fcc.function_handler;
function_handler  519 ext/spl/php_spl.c 		} else if (fcc.function_handler->type == ZEND_INTERNAL_FUNCTION &&
function_handler  520 ext/spl/php_spl.c 				   fcc.function_handler->internal_function.handler == zif_spl_autoload_call) {
function_handler  531 ext/spl/php_spl.c 		alfi.func_ptr = fcc.function_handler;
function_handler 2088 ext/spl/spl_directory.c 	fcic.function_handler = func_ptr;
function_handler   75 ext/spl/spl_engine.h 	fcc.function_handler = func;
function_handler  885 ext/spl/spl_iterators.c 	union _zend_function    *function_handler;
function_handler  895 ext/spl/spl_iterators.c 	function_handler = std_object_handlers.get_method(zobject, method, key);
function_handler  896 ext/spl/spl_iterators.c 	if (!function_handler) {
function_handler  897 ext/spl/spl_iterators.c 		if ((function_handler = zend_hash_find_ptr(&Z_OBJCE_P(zobj)->function_table, method)) == NULL) {
function_handler  900 ext/spl/spl_iterators.c 				function_handler = (*zobject)->handlers->get_method(zobject, method, key);
function_handler  906 ext/spl/spl_iterators.c 	return function_handler;
function_handler 1363 ext/spl/spl_iterators.c 	union _zend_function *function_handler;
function_handler 1368 ext/spl/spl_iterators.c 	function_handler = std_object_handlers.get_method(object, method, key);
function_handler 1369 ext/spl/spl_iterators.c 	if (!function_handler && intern->inner.ce) {
function_handler 1370 ext/spl/spl_iterators.c 		if ((function_handler = zend_hash_find_ptr(&intern->inner.ce->function_table, method)) == NULL) {
function_handler 1373 ext/spl/spl_iterators.c 				function_handler = (*object)->handlers->get_method(object, method, key);
function_handler 1379 ext/spl/spl_iterators.c 	return function_handler;
function_handler  312 main/streams/userspace.c 		fcc.function_handler = uwrap->ce->constructor;