fcic               64 Zend/zend_interfaces.c 		zend_fcall_info_cache fcic;
fcic               66 Zend/zend_interfaces.c 		fcic.initialized = 1;
fcic               76 Zend/zend_interfaces.c 			if (zend_hash_find(function_table, function_name, function_name_len+1, (void **) &fcic.function_handler) == FAILURE) {
fcic               81 Zend/zend_interfaces.c 				*fn_proxy = fcic.function_handler;
fcic               84 Zend/zend_interfaces.c 			fcic.function_handler = *fn_proxy;
fcic               86 Zend/zend_interfaces.c 		fcic.calling_scope = obj_ce;
fcic               88 Zend/zend_interfaces.c 			fcic.called_scope = Z_OBJCE_PP(object_pp);
fcic               92 Zend/zend_interfaces.c 			fcic.called_scope = obj_ce;
fcic               94 Zend/zend_interfaces.c 			fcic.called_scope = EG(called_scope);
fcic               96 Zend/zend_interfaces.c 		fcic.object_ptr = object_pp ? *object_pp : NULL;
fcic               97 Zend/zend_interfaces.c 		result = zend_call_function(&fci, &fcic TSRMLS_CC);
fcic             2102 ext/spl/spl_directory.c 	zend_fcall_info_cache fcic;
fcic             2130 ext/spl/spl_directory.c 	fcic.initialized = 1;
fcic             2131 ext/spl/spl_directory.c 	fcic.function_handler = func_ptr;
fcic             2132 ext/spl/spl_directory.c 	fcic.calling_scope = NULL;
fcic             2133 ext/spl/spl_directory.c 	fcic.called_scope = NULL;
fcic             2134 ext/spl/spl_directory.c 	fcic.object_ptr = NULL;
fcic             2136 ext/spl/spl_directory.c 	result = zend_call_function(&fci, &fcic TSRMLS_CC);