Lines Matching full:oat_location
217 const std::string* oat_location = ofa.OatFileName();
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";
430 args.push_back("--oat-file=" + oat_location);
438 oat_location.c_str(),
680 std::string oat_location = GetOdexDir() + "/SelfRelocation.oat";
684 GenerateOdexForTest(dex_location, oat_location, CompilerFilter::kSpeed);
687 oat_location.c_str(), kRuntimeISA, false, true);
739 std::string oat_location = GetOdexDir() + "/NoSelfRelocation.oat";
743 GenerateNoPatchOdexForTest(dex_location, oat_location, CompilerFilter::kSpeed);
746 oat_location.c_str(), kRuntimeISA, false, true);
772 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat";
780 Copy(odex_location, oat_location);
784 oat_location.c_str(), kRuntimeISA, false, true);
926 std::string oat_location = GetScratchDir() + "/LoadDexNoAlternateOat.oat";
931 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
943 EXPECT_TRUE(OS::FileExists(oat_location.c_str()));
957 std::string oat_location = GetScratchDir() + "/foo/bar/LoadDexUnwriteableAlternateOat.oat";
962 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
975 std::string oat_location = GetScratchDir() + "/GenNoDex.oat";
978 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
1088 explicit RaceGenerateTask(const std::string& dex_location, const std::string& oat_location)
1089 : dex_location_(dex_location), oat_location_(oat_location), loaded_oat_file_(nullptr)
1129 std::string oat_location = GetOdexDir() + "/RaceToGenerate.oat";
1140 std::unique_ptr<RaceGenerateTask> task(new RaceGenerateTask(dex_location, oat_location));