Lines Matching refs:inlined_method
70 ArtMethod* inlined_method = jni::DecodeArtMethod(WellKnownClasses::java_lang_String_charAt); in GetResolvedMethod() local
71 DCHECK_EQ(inlined_method->GetDexMethodIndex(), method_index); in GetResolvedMethod()
72 return inlined_method; in GetResolvedMethod()
83 ArtMethod* inlined_method = class_linker->LookupResolvedMethod(method_index, in GetResolvedMethod() local
86 if (UNLIKELY(inlined_method == nullptr)) { in GetResolvedMethod()
92 DCHECK(!inlined_method->IsRuntimeMethod()); in GetResolvedMethod()
93 if (UNLIKELY(inlined_method->GetDexFile() != method->GetDexFile())) { in GetResolvedMethod()
105 << " to " << inlined_method->PrettyMethod() in GetResolvedMethod()
106 << " in " << inlined_method->GetDexFile()->GetLocation() << "/" in GetResolvedMethod()
107 << static_cast<const void*>(inlined_method->GetDexFile()) << ". " in GetResolvedMethod()
111 method = inlined_method; in GetResolvedMethod()