Lines Matching refs:fcic
61 zend_fcall_info_cache fcic; in zend_call_method() local
69 fcic.function_handler = zend_hash_str_find_ptr( in zend_call_method()
71 if (UNEXPECTED(fcic.function_handler == NULL)) { in zend_call_method()
76 fcic.function_handler = zend_fetch_function_str(function_name, function_name_len); in zend_call_method()
77 if (UNEXPECTED(fcic.function_handler == NULL)) { in zend_call_method()
83 *fn_proxy = fcic.function_handler; in zend_call_method()
86 fcic.function_handler = *fn_proxy; in zend_call_method()
90 fcic.called_scope = Z_OBJCE_P(object); in zend_call_method()
97 fcic.called_scope = obj_ce; in zend_call_method()
99 fcic.called_scope = called_scope; in zend_call_method()
102 fcic.object = object ? Z_OBJ_P(object) : NULL; in zend_call_method()
103 result = zend_call_function(&fci, &fcic); in zend_call_method()