Lines Matching refs:oat_method
2365 bool ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method) { in FindOatMethodFor() argument
2366 DCHECK(oat_method != nullptr); in FindOatMethodFor()
2402 *oat_method = oat_class.GetOatMethod(oat_method_index); in FindOatMethodFor()
2412 OatFile::OatMethod oat_method; in GetQuickOatCodeFor() local
2414 if (FindOatMethodFor(method, &oat_method)) { in GetQuickOatCodeFor()
2415 result = oat_method.GetQuickCode(); in GetQuickOatCodeFor()
2443 OatFile::OatMethod oat_method; in GetPortableOatCodeFor() local
2446 if (FindOatMethodFor(method, &oat_method)) { in GetPortableOatCodeFor()
2447 result = oat_method.GetPortableCode(); in GetPortableOatCodeFor()
2448 quick_code = oat_method.GetQuickCode(); in GetPortableOatCodeFor()
2549 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() local
2550 portable_code = oat_method.GetPortableCode(); in FixupStaticTrampolines()
2551 quick_code = oat_method.GetQuickCode(); in FixupStaticTrampolines()
2606 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); in LinkCode() local
2607 oat_method.LinkMethod(method.Get()); in LinkCode()