Lines Matching refs:outer_method
189 ArtMethod* outer_method = *caller_sp; in DoGetCalleeSaveMethodOuterCallerAndPc() local
190 return std::make_pair(outer_method, caller_pc); in DoGetCalleeSaveMethodOuterCallerAndPc()
193 static inline ArtMethod* DoGetCalleeSaveMethodCaller(ArtMethod* outer_method, in DoGetCalleeSaveMethodCaller() argument
197 ArtMethod* caller = outer_method; in DoGetCalleeSaveMethodCaller()
199 if (outer_method != nullptr) { in DoGetCalleeSaveMethodCaller()
200 const OatQuickMethodHeader* current_code = outer_method->GetOatQuickMethodHeader(caller_pc); in DoGetCalleeSaveMethodCaller()
211 caller = GetResolvedMethod(outer_method, in DoGetCalleeSaveMethodCaller()
239 ArtMethod* outer_method = outer_caller_and_pc.first; in GetCalleeSaveMethodCaller() local
241 ArtMethod* caller = DoGetCalleeSaveMethodCaller(outer_method, caller_pc, do_caller_check); in GetCalleeSaveMethodCaller()
250 result.outer_method = outer_caller_and_pc.first; in GetCalleeSaveMethodCallerAndOuterMethod()
253 DoGetCalleeSaveMethodCaller(result.outer_method, caller_pc, /* do_caller_check */ true); in GetCalleeSaveMethodCallerAndOuterMethod()