Lines Matching refs:oat_location
399 std::string oat_location = GetOdexDir() + "/RelativeEncodedDexLocation.oat"; in TEST_F() local
408 args.push_back("--oat-file=" + oat_location); in TEST_F()
415 oat_location.c_str(), in TEST_F()
628 std::string oat_location = GetOdexDir() + "/SelfRelocation.oat"; in TEST_F() local
632 GenerateOdexForTest(dex_location, oat_location); in TEST_F()
635 oat_location.c_str(), kRuntimeISA, true); in TEST_F()
681 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat"; in TEST_F() local
689 Copy(odex_location, oat_location); in TEST_F()
693 oat_location.c_str(), kRuntimeISA, true); in TEST_F()
796 std::string oat_location = GetScratchDir() + "/LoadDexNoAlternateOat.oat"; in TEST_F() local
801 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, true); in TEST_F()
812 EXPECT_TRUE(OS::FileExists(oat_location.c_str())); in TEST_F()
919 explicit RaceGenerateTask(const std::string& dex_location, const std::string& oat_location) in RaceGenerateTask() argument
920 : dex_location_(dex_location), oat_location_(oat_location), in RaceGenerateTask()
955 std::string oat_location = GetOdexDir() + "/RaceToGenerate.oat"; in TEST_F() local
966 std::unique_ptr<RaceGenerateTask> task(new RaceGenerateTask(dex_location, oat_location)); in TEST_F()