Lines Matching refs:oat_class
2320 OatFile::OatClass* oat_class) { in FindOatClass() argument
2321 DCHECK(oat_class != nullptr); in FindOatClass()
2327 *oat_class = oat_dex_file->GetOatClass(class_def_idx); in FindOatClass()
2395 OatFile::OatClass oat_class; in FindOatMethodFor() local
2398 &oat_class)) { in FindOatMethodFor()
2402 *oat_method = oat_class.GetOatMethod(oat_method_index); in FindOatMethodFor()
2468 OatFile::OatClass oat_class; in GetQuickOatCodeFor() local
2469 if (!FindOatClass(dex_file, class_def_idx, &oat_class)) { in GetQuickOatCodeFor()
2473 return oat_class.GetOatMethod(oat_method_idx).GetQuickCode(); in GetQuickOatCodeFor()
2479 OatFile::OatClass oat_class; in GetPortableOatCodeFor() local
2480 if (!FindOatClass(dex_file, class_def_idx, &oat_class)) { in GetPortableOatCodeFor()
2484 return oat_class.GetOatMethod(oat_method_idx).GetPortableCode(); in GetPortableOatCodeFor()
2537 OatFile::OatClass oat_class; in FixupStaticTrampolines() local
2538 bool has_oat_class = FindOatClass(dex_file, klass->GetDexClassDefIndex(), &oat_class); in FixupStaticTrampolines()
2549 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines()
2591 void ClassLinker::LinkCode(Handle<mirror::ArtMethod> method, const OatFile::OatClass* oat_class, in LinkCode() argument
2603 if (oat_class != nullptr) { in LinkCode()
2606 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); in LinkCode()
2720 OatFile::OatClass oat_class; in LoadClass() local
2723 && FindOatClass(dex_file, klass->GetDexClassDefIndex(), &oat_class)) { in LoadClass()
2724 LoadClassMembers(dex_file, class_data, klass, class_loader, &oat_class); in LoadClass()
2734 const OatFile::OatClass* oat_class) { in LoadClassMembers() argument
2808 LinkCode(method, oat_class, dex_file, it.GetMemberIndex(), class_def_method_index); in LoadClassMembers()
2829 LinkCode(method, oat_class, dex_file, it.GetMemberIndex(), class_def_method_index); in LoadClassMembers()