Home
last modified time | relevance | path

Searched refs:ValidateOatFile (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/space/
Dimage_space_test.cc228 TEST_F(DexoptTest, ValidateOatFile) { in TEST_F() argument
269 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
273 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
277 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
281 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
285 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
289 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
293 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
297 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
301 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
[all …]
Dimage_space.h268 static bool ValidateOatFile(const OatFile& oat_file, std::string* error_msg);
Dimage_space.cc3240 if (!ImageSpace::ValidateOatFile(*oat_file, error_msg)) { in OpenOatFile()
3754 bool ImageSpace::ValidateOatFile(const OatFile& oat_file, std::string* error_msg) { in ValidateOatFile() function in art::gc::space::ImageSpace