Home
last modified time | relevance | path

Searched refs:oat_location (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Doat_file_assistant_test.cc399 std::string oat_location = GetOdexDir() + "/RelativeEncodedDexLocation.oat"; in TEST_F() local
408 args.push_back("--oat-file=" + oat_location); in TEST_F()
415 oat_location.c_str(), in TEST_F()
628 std::string oat_location = GetOdexDir() + "/SelfRelocation.oat"; in TEST_F() local
632 GenerateOdexForTest(dex_location, oat_location); in TEST_F()
635 oat_location.c_str(), kRuntimeISA, true); in TEST_F()
681 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat"; in TEST_F() local
689 Copy(odex_location, oat_location); in TEST_F()
693 oat_location.c_str(), kRuntimeISA, true); in TEST_F()
796 std::string oat_location = GetScratchDir() + "/LoadDexNoAlternateOat.oat"; in TEST_F() local
[all …]
Doat_file_assistant.h104 OatFileAssistant(const char* dex_location, const char* oat_location,
118 OatFileAssistant(const char* dex_location, const char* oat_location,
Doat_file_assistant.cc52 const char* oat_location, in OatFileAssistant() argument
55 : OatFileAssistant(dex_location, oat_location, isa, load_executable, nullptr) { } in OatFileAssistant()
64 const char* oat_location, in OatFileAssistant() argument
78 if (oat_location != nullptr) { in OatFileAssistant()
79 cached_oat_file_name_ = std::string(oat_location); in OatFileAssistant()
Dclass_linker.h341 const char* dex_location, const char* oat_location,
631 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location)
Druntime.cc723 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_location.c_str()); in OpenDexFilesFromImage() local
732 std::unique_ptr<OatFile> oat_file(OatFile::OpenWithElfFile(elf_file.release(), oat_location, in OpenDexFilesFromImage()
Dclass_linker.cc903 const char* dex_location, const char* oat_location, in OpenDexFilesFromOat() argument
911 OatFileAssistant oat_file_assistant(dex_location, oat_location, kRuntimeISA, in OpenDexFilesFromOat()
1007 const OatFile* ClassLinker::FindOpenedOatFileFromOatLocation(const std::string& oat_location) { in FindOpenedOatFileFromOatLocation() argument
1012 if (oat_file->GetLocation() == oat_location) { in FindOpenedOatFileFromOatLocation()
/art/compiler/
Dimage_writer.cc133 const std::string& oat_location) { in Write() argument
140 PLOG(ERROR) << "Failed to open oat file " << oat_filename << " for " << oat_location; in Write()
144 oat_file_ = OatFile::OpenReadable(oat_file.get(), oat_location, nullptr, &error_msg); in Write()
146 PLOG(ERROR) << "Failed to open writable oat file " << oat_filename << " for " << oat_location in Write()
185 LOG(ERROR) << "Failed to flush and close oat file " << oat_filename << " for " << oat_location; in Write()
Dimage_writer.h90 const std::string& oat_location)
/art/oatdump/
Doatdump.cc1456 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename); in Dump() local
1457 os << "OAT LOCATION: " << oat_location; in Dump()
1460 const OatFile* oat_file = class_linker->FindOpenedOatFileFromOatLocation(oat_location); in Dump()
1462 oat_file = OatFile::Open(oat_location, oat_location, in Dump()