Lines Matching refs:oat_dex_file

1874   const OatDexFile* oat_dex_file = oat_file->GetOatDexFile(location, error_msg);  in OpenOatDexFile()  local
1875 if (oat_dex_file == nullptr) { in OpenOatDexFile()
1879 dex_file = oat_dex_file->OpenDexFile(&inner_error_msg); in OpenOatDexFile()
1888 if (dex_file->GetLocationChecksum() != oat_dex_file->GetDexFileLocationChecksum()) { in OpenOatDexFile()
1889 CHECK(dex_file->GetSha1() != oat_dex_file->GetSha1()); in OpenOatDexFile()
1893 oat_dex_file->GetDexFileLocationChecksum()); in OpenOatDexFile()
1896 CHECK(dex_file->GetSha1() == oat_dex_file->GetSha1()); in OpenOatDexFile()
4461 ObjPtr<mirror::DexCache> ClassLinker::FindDexCache(Thread* self, const OatDexFile& oat_dex_file) { in FindDexCache() argument
4463 const DexCacheData* dex_cache_data = FindDexCacheDataLocked(oat_dex_file); in FindDexCache()
4495 << oat_dex_file.GetDexFileLocation() in FindDexCache()
4496 << " oat_dex_file=" << &oat_dex_file in FindDexCache()
4497 << " oat_file=" << oat_dex_file.GetOatFile() in FindDexCache()
4498 << " oat_location=" << oat_dex_file.GetOatFile()->GetLocation(); in FindDexCache()
4519 const OatDexFile& oat_dex_file) { in FindDexCacheDataLocked() argument
4521 return entry.first->GetOatDexFile() == &oat_dex_file; in FindDexCacheDataLocked()
5138 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in VerifyClassUsingOatFile() local
5140 if (oat_dex_file == nullptr || oat_dex_file->GetOatFile() == nullptr) { in VerifyClassUsingOatFile()
5145 oat_file_class_status = oat_dex_file->GetOatClass(class_def_index).GetStatus(); in VerifyClassUsingOatFile()
5156 const OatFile* oat_file = oat_dex_file->GetOatFile(); in VerifyClassUsingOatFile()