Lines Matching refs:oat_file
72 std::unique_ptr<File> oat_file; local
79 oat_file.reset(OS::CreateEmptyFile(odex_location.c_str()));
80 CHECK(oat_file != nullptr) << odex_location;
81 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
93 if (oat_file != nullptr) {
94 CHECK_EQ(oat_file->FlushClose(), 0) << "Could not flush and close oat file";
1111 auto check_oat = [expected_classpath_key](const OatFile& oat_file) { in RunTest() argument
1113 const char* classpath = oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in RunTest()
1195 std::unique_ptr<OatFile> oat_file(oat_file_assistant.GetBestOatFile()); in TEST_F() local
1197 OatFileAssistant::LoadDexFiles(*oat_file, stripped_classpath.c_str()); in TEST_F()
2168 [&](const OatFile& oat_file) { in TEST_F() argument
2169 EXPECT_NE(oat_file.GetClassLoaderContext(), stored_context) << output_; in TEST_F()
2170 EXPECT_NE(oat_file.GetClassLoaderContext(), valid_context) << output_; in TEST_F()
2180 [&](const OatFile& oat_file) { in TEST_F() argument
2181 EXPECT_EQ(oat_file.GetClassLoaderContext(), expected_stored_context) << output_; in TEST_F()