/art/runtime/ |
oat_file_assistant_test.cc | 217 const std::string* oat_location = ofa.OatFileName(); local 218 ASSERT_TRUE(oat_location != nullptr); 222 args.push_back("--oat-file=" + *oat_location); 230 std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_location->c_str(), 231 oat_location->c_str(), 421 std::string oat_location = GetOdexDir() + "/RelativeEncodedDexLocation.oat"; local 430 args.push_back("--oat-file=" + oat_location); 438 oat_location.c_str(), 680 std::string oat_location = GetOdexDir() + "/SelfRelocation.oat"; local 684 GenerateOdexForTest(dex_location, oat_location, CompilerFilter::kSpeed) 739 std::string oat_location = GetOdexDir() + "\/NoSelfRelocation.oat"; local 772 std::string oat_location = GetOdexDir() + "\/OdexOatOverlap.oat"; local 926 std::string oat_location = GetScratchDir() + "\/LoadDexNoAlternateOat.oat"; local 957 std::string oat_location = GetScratchDir() + "\/foo\/bar\/LoadDexUnwriteableAlternateOat.oat"; local 975 std::string oat_location = GetScratchDir() + "\/GenNoDex.oat"; local 1129 std::string oat_location = GetOdexDir() + "\/RaceToGenerate.oat"; local [all...] |
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_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.cc | 73 const char* oat_location, 89 if (oat_location != nullptr) { 90 cached_oat_file_name_ = std::string(oat_location); [all...] |
oat_file_assistant.h | 115 // Constructs an OatFileAssistant, providing an explicit target oat_location 118 const char* oat_location,
|
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...] |