Lines Matching refs:fci_cache
749 zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) /* {{{ */ in zend_call_function() argument
766 if (fci_cache) { in zend_call_function()
767 zend_release_fcall_info_cache(fci_cache); in zend_call_function()
774 if (!fci_cache || !fci_cache->function_handler) { in zend_call_function()
777 if (!fci_cache) { in zend_call_function()
778 fci_cache = &fci_cache_local; in zend_call_function()
781 if (!zend_is_callable_ex(&fci->function_name, fci->object, 0, NULL, fci_cache, &error)) { in zend_call_function()
794 func = fci_cache->function_handler; in zend_call_function()
795 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
796 object_or_called_scope = fci_cache->called_scope; in zend_call_function()
799 object_or_called_scope = fci_cache->object; in zend_call_function()
939 fci_cache->function_handler = NULL; in zend_call_function()