Searched refs:oat_location (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Doat_file_manager.h60 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location) const
100 const char* oat_location,
126 const OatFile* FindOpenedOatFileFromOatLocationLocked(const std::string& oat_location) const
H A Doat_file_assistant_test.cc219 const std::string* oat_location = ofa.OatFileName(); local
220 ASSERT_TRUE(oat_location != nullptr);
224 args.push_back("--oat-file=" + *oat_location);
232 std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_location->c_str(),
233 oat_location->c_str(),
423 std::string oat_location = GetOdexDir() + "/RelativeEncodedDexLocation.oat"; local
432 args.push_back("--oat-file=" + oat_location);
440 oat_location.c_str(),
682 std::string oat_location = GetOdexDir() + "/SelfRelocation.oat"; local
686 GenerateOdexForTest(dex_location, oat_location, CompilerFilte
741 std::string oat_location = GetOdexDir() + "/NoSelfRelocation.oat"; local
774 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat"; local
928 std::string oat_location = GetScratchDir() + "/LoadDexNoAlternateOat.oat"; local
959 std::string oat_location = GetScratchDir() + "/foo/bar/LoadDexUnwriteableAlternateOat.oat"; local
977 std::string oat_location = GetScratchDir() + "/GenNoDex.oat"; local
1090 RaceGenerateTask(const std::string& dex_location, const std::string& oat_location) argument
1131 std::string oat_location = GetOdexDir() + "/RaceToGenerate.oat"; local
[all...]
H A Doat_file_manager.cc86 const OatFile* OatFileManager::FindOpenedOatFileFromOatLocation(const std::string& oat_location)
89 return FindOpenedOatFileFromOatLocationLocked(oat_location);
93 const std::string& oat_location) const {
95 if (oat_file->GetLocation() == oat_location) {
543 const char* oat_location,
559 oat_location,
541 OpenDexFilesFromOat( const char* dex_location, const char* oat_location, jobject class_loader, jobjectArray dex_elements, const OatFile** out_oat_file, std::vector<std::string>* error_msgs) argument
H A Doat_file_assistant.h115 // Constructs an OatFileAssistant, providing an explicit target oat_location
118 const char* oat_location,
H A Doat_file_assistant.cc73 const char* oat_location,
89 if (oat_location != nullptr) {
90 cached_oat_file_name_ = std::string(oat_location);
72 OatFileAssistant(const char* dex_location, const char* oat_location, const InstructionSet isa, bool profile_changed, bool load_executable) argument
H A Druntime.cc841 std::string oat_location = local
845 if (EndsWith(oat_location, ".jar")) {
846 oat_location.replace(oat_location.length() - 3, 3, "oat");
863 OatFile::OpenWithElfFile(elf_file.release(), oat_location, nullptr, &error_msg));
/art/oatdump/
H A Doatdump.cc1367 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename); local
1368 os << "OAT LOCATION: " << oat_location; local
1373 oat_file = runtime->GetOatFileManager().FindOpenedOatFileFromOatLocation(oat_location);
1376 oat_file = OatFile::Open(oat_location,
1377 oat_location,

Completed in 103 milliseconds