HomeSort by relevance Sort by last modified time
    Searched refs:oat_location (Results 1 - 7 of 7) sorted by null

  /art/runtime/
oat_file_manager.h 60 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location) const
100 const char* oat_location,
126 const OatFile* FindOpenedOatFileFromOatLocationLocked(const std::string& oat_location) const
oat_file_assistant_test.cc 387 const std::string* oat_location = ofa.OatFileName(); local
388 ASSERT_TRUE(oat_location != nullptr);
392 args.push_back("--oat-file=" + *oat_location);
400 std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_location->c_str(),
401 oat_location->c_str(),
591 std::string oat_location = GetOdexDir() + "/RelativeEncodedDexLocation.oat"; local
600 args.push_back("--oat-file=" + oat_location);
608 oat_location.c_str(),
850 std::string oat_location = GetOdexDir() + "\/SelfRelocation.oat"; local
909 std::string oat_location = GetOdexDir() + "\/NoSelfRelocation.oat"; local
942 std::string oat_location = GetOdexDir() + "\/OdexOatOverlap.oat"; local
1096 std::string oat_location = GetScratchDir() + "\/LoadDexNoAlternateOat.oat"; local
1127 std::string oat_location = GetScratchDir() + "\/foo\/bar\/LoadDexUnwriteableAlternateOat.oat"; local
1145 std::string oat_location = GetScratchDir() + "\/GenNoDex.oat"; local
1299 std::string oat_location = GetOdexDir() + "\/RaceToGenerate.oat"; local
    [all...]
oat_file_manager.cc 86 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,
oat_file_assistant.h 115 // Constructs an OatFileAssistant, providing an explicit target oat_location
118 const char* oat_location,
oat_file_assistant.cc 73 const char* oat_location,
89 if (oat_location != nullptr) {
90 cached_oat_file_name_ = std::string(oat_location);
    [all...]
runtime.cc 816 std::string oat_location = local
820 if (EndsWith(oat_location, ".jar")) {
821 oat_location.replace(oat_location.length() - 3, 3, "oat");
838 OatFile::OpenWithElfFile(elf_file.release(), oat_location, nullptr, &error_msg));
    [all...]
  /art/oatdump/
oatdump.cc 1367 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename); local
1368 os << "OAT LOCATION: " << oat_location; local
    [all...]

Completed in 99 milliseconds