function_handler 2770 Zend/zend_API.c 	fcc->function_handler = NULL;
function_handler 2783 Zend/zend_API.c 		if (zend_hash_find(EG(function_table), lmname, mlen+1, (void**)&fcc->function_handler) == SUCCESS) {
function_handler 2842 Zend/zend_API.c 		fcc->function_handler = fcc->calling_scope->constructor;
function_handler 2843 Zend/zend_API.c 		if (fcc->function_handler) {
function_handler 2846 Zend/zend_API.c 	} else if (zend_hash_find(ftable, lmname, mlen+1, (void**)&fcc->function_handler) == SUCCESS) {
function_handler 2848 Zend/zend_API.c 		if ((fcc->function_handler->op_array.fn_flags & ZEND_ACC_CHANGED) &&
function_handler 2850 Zend/zend_API.c 		    instanceof_function(fcc->function_handler->common.scope, EG(scope) TSRMLS_CC)) {
function_handler 2856 Zend/zend_API.c 				fcc->function_handler = priv_fbc;
function_handler 2863 Zend/zend_API.c 			if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) {
function_handler 2864 Zend/zend_API.c 				if (!zend_check_private(fcc->function_handler, fcc->object_ptr ? Z_OBJCE_P(fcc->object_ptr) : EG(scope), lmname, mlen TSRMLS_CC)) {
function_handler 2866 Zend/zend_API.c 					fcc->function_handler = NULL;
function_handler 2869 Zend/zend_API.c 			} else if (fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED) {
function_handler 2870 Zend/zend_API.c 				if (!zend_check_protected(fcc->function_handler->common.scope, EG(scope))) {
function_handler 2872 Zend/zend_API.c 					fcc->function_handler = NULL;
function_handler 2881 Zend/zend_API.c 				fcc->function_handler = emalloc(sizeof(zend_internal_function));
function_handler 2882 Zend/zend_API.c 				fcc->function_handler->internal_function.type = ZEND_INTERNAL_FUNCTION;
function_handler 2883 Zend/zend_API.c 				fcc->function_handler->internal_function.module = (ce_org->type == ZEND_INTERNAL_CLASS) ? ce_org->info.internal.module : NULL;
function_handler 2884 Zend/zend_API.c 				fcc->function_handler->internal_function.handler = zend_std_call_user_call;
function_handler 2885 Zend/zend_API.c 				fcc->function_handler->internal_function.arg_info = NULL;
function_handler 2886 Zend/zend_API.c 				fcc->function_handler->internal_function.num_args = 0;
function_handler 2887 Zend/zend_API.c 				fcc->function_handler->internal_function.scope = ce_org;
function_handler 2888 Zend/zend_API.c 				fcc->function_handler->internal_function.fn_flags = ZEND_ACC_CALL_VIA_HANDLER;
function_handler 2889 Zend/zend_API.c 				fcc->function_handler->internal_function.function_name = estrndup(mname, mlen);
function_handler 2893 Zend/zend_API.c 				fcc->function_handler = Z_OBJ_HT_P(fcc->object_ptr)->get_method(&fcc->object_ptr, mname, mlen, NULL TSRMLS_CC);
function_handler 2894 Zend/zend_API.c 				if (fcc->function_handler) {
function_handler 2896 Zend/zend_API.c 					    (!fcc->function_handler->common.scope ||
function_handler 2897 Zend/zend_API.c 					     !instanceof_function(ce_org, fcc->function_handler->common.scope TSRMLS_CC))) {
function_handler 2898 Zend/zend_API.c 						if ((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0) {
function_handler 2899 Zend/zend_API.c 							if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 2900 Zend/zend_API.c 								efree((char*)fcc->function_handler->common.function_name);
function_handler 2902 Zend/zend_API.c 							efree(fcc->function_handler);
function_handler 2906 Zend/zend_API.c 						call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0;
function_handler 2912 Zend/zend_API.c 				fcc->function_handler = fcc->calling_scope->get_static_method(fcc->calling_scope, mname, mlen TSRMLS_CC);
function_handler 2914 Zend/zend_API.c 				fcc->function_handler = zend_std_get_static_method(fcc->calling_scope, mname, mlen, NULL TSRMLS_CC);
function_handler 2916 Zend/zend_API.c 			if (fcc->function_handler) {
function_handler 2918 Zend/zend_API.c 				call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0;
function_handler 2930 Zend/zend_API.c 			if (!fcc->object_ptr && (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT)) {
function_handler 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);
function_handler 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);
function_handler 2937 Zend/zend_API.c 			} else if (!fcc->object_ptr && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) {
function_handler 2940 Zend/zend_API.c 				if (fcc->function_handler->common.fn_flags & ZEND_ACC_ALLOW_STATIC) {
function_handler 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);
function_handler 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);
function_handler 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);
function_handler 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);
function_handler 2973 Zend/zend_API.c 				if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) {
function_handler 2974 Zend/zend_API.c 					if (!zend_check_private(fcc->function_handler, fcc->object_ptr ? Z_OBJCE_P(fcc->object_ptr) : EG(scope), lmname, mlen TSRMLS_CC)) {
function_handler 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);
function_handler 2983 Zend/zend_API.c 				} else if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED)) {
function_handler 2984 Zend/zend_API.c 					if (!zend_check_protected(fcc->function_handler->common.scope, EG(scope))) {
function_handler 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);
function_handler 3037 Zend/zend_API.c 	fcc->function_handler = NULL;
function_handler 3077 Zend/zend_API.c 			    fcc->function_handler &&
function_handler 3078 Zend/zend_API.c 				((fcc->function_handler->type == ZEND_INTERNAL_FUNCTION &&
function_handler 3079 Zend/zend_API.c 			      (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER)) ||
function_handler 3080 Zend/zend_API.c 			     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
function_handler 3081 Zend/zend_API.c 			     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
function_handler 3082 Zend/zend_API.c 				if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 3083 Zend/zend_API.c 					efree((char*)fcc->function_handler->common.function_name);
function_handler 3085 Zend/zend_API.c 				efree(fcc->function_handler);
function_handler 3155 Zend/zend_API.c 					    fcc->function_handler &&
function_handler 3156 Zend/zend_API.c 						((fcc->function_handler->type == ZEND_INTERNAL_FUNCTION &&
function_handler 3157 Zend/zend_API.c 					      (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER)) ||
function_handler 3158 Zend/zend_API.c 					     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
function_handler 3159 Zend/zend_API.c 					     fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
function_handler 3160 Zend/zend_API.c 						if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 3161 Zend/zend_API.c 							efree((char*)fcc->function_handler->common.function_name);
function_handler 3163 Zend/zend_API.c 						efree(fcc->function_handler);
function_handler 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) {
function_handler 3231 Zend/zend_API.c 			add_next_index_string(callable, fcc.function_handler->common.function_name, 1);
function_handler 3233 Zend/zend_API.c 		if (fcc.function_handler &&
function_handler 3234 Zend/zend_API.c 			((fcc.function_handler->type == ZEND_INTERNAL_FUNCTION &&
function_handler 3235 Zend/zend_API.c 		      (fcc.function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER)) ||
function_handler 3236 Zend/zend_API.c 		     fcc.function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
function_handler 3237 Zend/zend_API.c 		     fcc.function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
function_handler 3238 Zend/zend_API.c 			if (fcc.function_handler->type != ZEND_OVERLOADED_FUNCTION) {
function_handler 3239 Zend/zend_API.c 				efree((char*)fcc.function_handler->common.function_name);
function_handler 3241 Zend/zend_API.c 			efree(fcc.function_handler);
function_handler   57 Zend/zend_API.h 	zend_function *function_handler;
function_handler  696 Zend/zend_execute_API.c 	EX(function_state).function = fci_cache->function_handler;
function_handler  999 Zend/zend_execute_API.c 	fcall_cache.function_handler = EG(autoload_func);
function_handler 1008 Zend/zend_execute_API.c 	EG(autoload_func) = fcall_cache.function_handler;
function_handler   76 Zend/zend_interfaces.c 			if (zend_hash_find(function_table, function_name, function_name_len+1, (void **) &fcic.function_handler) == FAILURE) {
function_handler   81 Zend/zend_interfaces.c 				*fn_proxy = fcic.function_handler;
function_handler   84 Zend/zend_interfaces.c 			fcic.function_handler = *fn_proxy;
function_handler 2196 ext/mysql/php_mysql.c 			fcc.function_handler = ce->constructor;
function_handler 1327 ext/mysqli/mysqli.c 			fcc.function_handler = ce->constructor;
function_handler  483 ext/pdo/pdo_dbh.c 		fcc.function_handler = dbstmt_ce->constructor;
function_handler  766 ext/pdo/pdo_stmt.c 		fcc->function_handler = ce->constructor;
function_handler 2816 ext/pgsql/pgsql.c 			fcc.function_handler = ce->constructor;
function_handler 1441 ext/reflection/php_reflection.c 	fcc.function_handler = ce_ptr->constructor;
function_handler 1957 ext/reflection/php_reflection.c 	fcc.function_handler = fptr;
function_handler 2024 ext/reflection/php_reflection.c 	fcc.function_handler = fptr;
function_handler 2957 ext/reflection/php_reflection.c 	fcc.function_handler = mptr;
function_handler 3066 ext/reflection/php_reflection.c 	fcc.function_handler = mptr;
function_handler 3076 ext/reflection/php_reflection.c 		fcc.function_handler = _copy_function(mptr TSRMLS_CC);
function_handler 4310 ext/reflection/php_reflection.c 		fcc.function_handler = constructor;
function_handler 4415 ext/reflection/php_reflection.c 		fcc.function_handler = constructor;
function_handler  497 ext/spl/php_spl.c 			alfi.func_ptr = fcc.function_handler;
function_handler  540 ext/spl/php_spl.c 		alfi.func_ptr = fcc.function_handler;
function_handler 2131 ext/spl/spl_directory.c 	fcic.function_handler = func_ptr;
function_handler   76 ext/spl/spl_engine.h 	fcc.function_handler = func;
function_handler  874 ext/spl/spl_iterators.c 	union _zend_function    *function_handler;
function_handler  884 ext/spl/spl_iterators.c 	function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC);
function_handler  885 ext/spl/spl_iterators.c 	if (!function_handler) {
function_handler  886 ext/spl/spl_iterators.c 		if (zend_hash_find(&Z_OBJCE_P(zobj)->function_table, method, method_len+1, (void **) &function_handler) == FAILURE) {
function_handler  889 ext/spl/spl_iterators.c 				function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_CC);
function_handler  895 ext/spl/spl_iterators.c 	return function_handler;
function_handler 1352 ext/spl/spl_iterators.c 	union _zend_function *function_handler;
function_handler 1357 ext/spl/spl_iterators.c 	function_handler = std_object_handlers.get_method(object_ptr, method, method_len, key TSRMLS_CC);
function_handler 1358 ext/spl/spl_iterators.c 	if (!function_handler && intern->inner.ce) {
function_handler 1359 ext/spl/spl_iterators.c 		if (zend_hash_find(&intern->inner.ce->function_table, method, method_len+1, (void **) &function_handler) == FAILURE) {
function_handler 1362 ext/spl/spl_iterators.c 				function_handler = Z_OBJ_HT_P(*object_ptr)->get_method(object_ptr, method, method_len, key TSRMLS_CC);
function_handler 1368 ext/spl/spl_iterators.c 	return function_handler;
function_handler  316 main/streams/userspace.c 		fcc.function_handler = uwrap->ce->constructor;