• Home
  • Raw
  • Download

Lines Matching refs:oat_class

1513   const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_idx);  in GetOatClass()  local
1514 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << class_def_idx; in GetOatClass()
1515 return oat_class; in GetOatClass()
1576 oat_class(GetOatClass(*declaring_class->GetDexCache()->GetDexFile(), in GetOatMethodFor() local
1578 CHECK(oat_class.get() != NULL); in GetOatMethodFor()
1584 return oat_class->GetOatMethod(oat_method_index); in GetOatMethodFor()
1607 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, class_def_idx)); in GetOatCodeFor() local
1608 CHECK(oat_class.get() != nullptr); in GetOatCodeFor()
1610 return oat_class->GetOatMethod(oat_method_idx).GetCode(); in GetOatCodeFor()
1646 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, klass->GetDexClassDefIndex())); in FixupStaticTrampolines() local
1647 CHECK(oat_class.get() != NULL); in FixupStaticTrampolines()
1663 const void* code = oat_class->GetOatMethod(method_index).GetCode(); in FixupStaticTrampolines()
1674 static void LinkCode(SirtRef<mirror::ArtMethod>& method, const OatFile::OatClass* oat_class, in LinkCode() argument
1681 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); in LinkCode()
1783 UniquePtr<const OatFile::OatClass> oat_class; in LoadClass() local
1785 oat_class.reset(GetOatClass(dex_file, klass->GetDexClassDefIndex())); in LoadClass()
1817 if (oat_class.get() != NULL) { in LoadClass()
1818 LinkCode(method, oat_class.get(), class_def_method_index); in LoadClass()
1831 if (oat_class.get() != NULL) { in LoadClass()
1832 LinkCode(method, oat_class.get(), class_def_method_index); in LoadClass()
2555 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index)); in VerifyClassUsingOatFile() local
2556 CHECK(oat_class.get() != NULL) in VerifyClassUsingOatFile()
2558 oat_file_class_status = oat_class->GetStatus(); in VerifyClassUsingOatFile()