Home
last modified time | relevance | path

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

/art/runtime/
Doat_file_test.cc140 std::string oat_location; in TEST_F() local
143 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg; in TEST_F()
145 oat_location.c_str(), in TEST_F()
146 oat_location.c_str(), in TEST_F()
164 std::string oat_location; in TEST_F() local
167 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg; in TEST_F()
172 oat_location.c_str(), in TEST_F()
173 oat_location.c_str(), in TEST_F()
188 oat_location, in TEST_F()
189 oat_location, in TEST_F()
Ddexopt_test.cc72 const std::string& oat_location, in GenerateOatForTest() argument
82 args.push_back("--oat-file=" + oat_location); in GenerateOatForTest()
112 oat_location.c_str(), in GenerateOatForTest()
113 oat_location.c_str(), in GenerateOatForTest()
159 std::string oat_location; in GenerateOatForTest() local
162 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg; in GenerateOatForTest()
164 oat_location, in GenerateOatForTest()
Doat_file_manager.h62 const OatFile* FindOpenedOatFileFromOatLocation(const std::string& oat_location) const
173 const OatFile* FindOpenedOatFileFromOatLocationLocked(const std::string& oat_location) const
Ddexopt_test.h42 const std::string& oat_location,
Doat_file_assistant_test.cc549 std::string oat_location; in TEST_F() local
552 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg; in TEST_F()
556 ASSERT_EQ(0, unlink(oat_location.c_str())); in TEST_F()
1184 const std::string& oat_location, in RaceGenerateTask() argument
1188 oat_location_(oat_location), in RaceGenerateTask()
1238 std::string oat_location = GetOdexDir() + "/RaceToGenerate.oat"; in TEST_F() local
1255 new RaceGenerateTask(*this, dex_location, oat_location, &lock)); in TEST_F()
1391 std::string oat_location = GetOdexDir() + "/TestDex.odex"; in TEST_F() local
1417 args.push_back("--oat-file=" + oat_location); in TEST_F()
1444 std::string oat_location = odex_dir + "/" + filebase + ".odex"; in TEST_F() local
[all …]
Doat_file.cc234 const std::string& oat_location, in OpenOatFile() argument
241 std::unique_ptr<OatFileBase> ret(new kOatFileBaseSubType(oat_location, executable)); in OpenOatFile()
252 if (!ret->ComputeFields(oat_location, error_msg)) { in OpenOatFile()
256 ret->PreSetup(oat_location); in OpenOatFile()
1584 const std::string& oat_location, in Open() argument
1590 ScopedTrace trace("Open oat file " + oat_location); in Open()
1591 CHECK(!oat_filename.empty()) << oat_location; in Open()
1592 CheckLocation(oat_location); in Open()
1610 oat_location, in Open()
1639 oat_location, in Open()
[all …]
Doat_file_manager.cc112 const OatFile* OatFileManager::FindOpenedOatFileFromOatLocation(const std::string& oat_location) in FindOpenedOatFileFromOatLocation()
115 return FindOpenedOatFileFromOatLocationLocked(oat_location); in FindOpenedOatFileFromOatLocation()
119 const std::string& oat_location) const { in FindOpenedOatFileFromOatLocationLocked()
121 if (oat_file->GetLocation() == oat_location) { in FindOpenedOatFileFromOatLocationLocked()
Doat_file.h104 const std::string& oat_location,
/art/dexlayout/
Ddexdiag_test.cc67 std::string oat_location = GetSystemImageFilename(default_location.c_str(), kRuntimeISA); in OpenOatAndVdexFiles() local
68 EXPECT_TRUE(!oat_location.empty()); in OpenOatAndVdexFiles()
69 std::cout << "==" << oat_location << std::endl; in OpenOatAndVdexFiles()
72 oat_location.c_str(), in OpenOatAndVdexFiles()
73 oat_location.c_str(), in OpenOatAndVdexFiles()
/art/runtime/gc/space/
Dimage_space_test.cc33 std::string oat_location = GetScratchDir() + "/Oat.oat"; in TEST_F() local
44 args.push_back("--oat-file=" + oat_location); in TEST_F()
48 oat_location.c_str(), in TEST_F()
49 oat_location.c_str(), in TEST_F()
Dimage_space.cc1798 std::string oat_location = in OpenOatFile() local
1803 oat_location, in OpenOatFile()
/art/libartbase/base/
Dfile_utils.cc282 std::string GetVdexFilename(const std::string& oat_location) { in GetVdexFilename() argument
283 return ReplaceFileExtension(oat_location, "vdex"); in GetVdexFilename()
/art/dexoptanalyzer/
Ddexoptanalyzer_test.cc275 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat"; in TEST_F() local
282 Copy(odex_location, oat_location); in TEST_F()
/art/oatdump/
Doatdump.cc1882 std::string oat_location = ImageHeader::GetOatLocationFromImageLocation(image_filename); in Dump() local
1883 os << "OAT LOCATION: " << oat_location; in Dump()
1888 oat_file = runtime->GetOatFileManager().FindOpenedOatFileFromOatLocation(oat_location); in Dump()
1892 oat_location, in Dump()
1893 oat_location, in Dump()