Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space_test.cc29 TEST_F(DexoptTest, ValidateOatFile) { in TEST_F() argument
58 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
62 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
66 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
70 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
74 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
78 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
82 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
86 EXPECT_FALSE(ImageSpace::ValidateOatFile(*oat, &error_msg)); in TEST_F()
90 EXPECT_TRUE(ImageSpace::ValidateOatFile(*oat, &error_msg)) << error_msg; in TEST_F()
[all …]
Dimage_space.h163 static bool ValidateOatFile(const OatFile& oat_file, std::string* error_msg);
Dimage_space.cc1853 if (!ImageSpace::ValidateOatFile(*oat_file, error_msg)) { in OpenOatFile()
2151 bool ImageSpace::ValidateOatFile(const OatFile& oat_file, std::string* error_msg) { in ValidateOatFile() function in art::gc::space::ImageSpace