Home
last modified time | relevance | path

Searched refs:oat_dex_file (Results 1 – 7 of 7) sorted by relevance

/art/compiler/
Doat_test.cc114 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation(), in TEST_F() local
116 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum()); in TEST_F()
127 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i)); in TEST_F()
Doat_writer.cc110 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file); in InitOatDexFiles() local
111 oat_dex_files_.push_back(oat_dex_file); in InitOatDexFiles()
112 offset += oat_dex_file->SizeOf(); in InitOatDexFiles()
/art/oatdump/
Doatdump.cc148 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump() local
149 CHECK(oat_dex_file != NULL); in Dump()
150 DumpOatDexFile(os, *oat_dex_file); in Dump()
175 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetOatCode() local
176 CHECK(oat_dex_file != NULL); in GetOatCode()
177 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile()); in GetOatCode()
183 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index); in GetOatCode()
200 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in AddAllOffsets() local
201 CHECK(oat_dex_file != NULL); in AddAllOffsets()
202 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile()); in AddAllOffsets()
[all …]
/art/runtime/gc/space/
Dimage_space.cc276 for (const OatFile::OatDexFile* oat_dex_file : oat_file_->GetOatDexFiles()) { in ValidateOatFile() local
277 const std::string& dex_file_location = oat_dex_file->GetDexFileLocation(); in ValidateOatFile()
283 if (dex_file_location_checksum != oat_dex_file->GetDexFileLocationChecksum()) { in ValidateOatFile()
286 << " (" << oat_dex_file->GetDexFileLocationChecksum() << " != " in ValidateOatFile()
/art/runtime/
Doat_file.cc331 const OatFile::OatDexFile* oat_dex_file = it->second; in GetOatDexFile() local
333 oat_dex_file->GetDexFileLocationChecksum() == *dex_location_checksum) { in GetOatDexFile()
334 return oat_dex_file; in GetOatDexFile()
Dclass_linker.cc682 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, in FindOpenedOatFileFromDexLocation() local
685 if (oat_dex_file != NULL) { in FindOpenedOatFileFromDexLocation()
720 …const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_chec… in FindDexFileInOatLocation() local
721 if (oat_dex_file == NULL) { in FindDexFileInOatLocation()
726 uint32_t actual_dex_checksum = oat_dex_file->GetDexFileLocationChecksum(); in FindDexFileInOatLocation()
734 return oat_dex_file->OpenDexFile(); in FindDexFileInOatLocation()
833 …const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_chec… in FindOrCreateOatFileForDexLocationLocked() local
834 if (oat_dex_file == NULL) { in FindOrCreateOatFileForDexLocationLocked()
840 const DexFile* result = oat_dex_file->OpenDexFile(); in FindOrCreateOatFileForDexLocationLocked()
858 …const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_chec… in VerifyOatFileChecksums() local
[all …]
/art/runtime/native/
Ddalvik_system_DexFile.cc233 const art::OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(filename.c_str(), NULL); in DexFile_isDexOptNeeded() local
234 if (oat_dex_file == NULL) { in DexFile_isDexOptNeeded()