Lines Matching defs:oat_location

219   const std::string* oat_location = ofa.OatFileName();
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";
432 args.push_back("--oat-file=" + oat_location);
440 oat_location.c_str(),
682 std::string oat_location = GetOdexDir() + "/SelfRelocation.oat";
686 GenerateOdexForTest(dex_location, oat_location, CompilerFilter::kSpeed);
689 oat_location.c_str(), kRuntimeISA, false, true);
741 std::string oat_location = GetOdexDir() + "/NoSelfRelocation.oat";
745 GenerateNoPatchOdexForTest(dex_location, oat_location, CompilerFilter::kSpeed);
748 oat_location.c_str(), kRuntimeISA, false, true);
774 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat";
782 Copy(odex_location, oat_location);
786 oat_location.c_str(), kRuntimeISA, false, true);
928 std::string oat_location = GetScratchDir() + "/LoadDexNoAlternateOat.oat";
933 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
945 EXPECT_TRUE(OS::FileExists(oat_location.c_str()));
959 std::string oat_location = GetScratchDir() + "/foo/bar/LoadDexUnwriteableAlternateOat.oat";
964 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
977 std::string oat_location = GetScratchDir() + "/GenNoDex.oat";
980 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
1090 explicit RaceGenerateTask(const std::string& dex_location, const std::string& oat_location)
1091 : dex_location_(dex_location), oat_location_(oat_location), loaded_oat_file_(nullptr)
1131 std::string oat_location = GetOdexDir() + "/RaceToGenerate.oat";
1142 std::unique_ptr<RaceGenerateTask> task(new RaceGenerateTask(dex_location, oat_location));