Lines Matching refs:oat_header
141 const OatHeader& oat_header = oat_file->GetOatHeader(); in TEST_F() local
142 ASSERT_TRUE(oat_header.IsValid()); in TEST_F()
143 ASSERT_EQ(1U, oat_header.GetDexFileCount()); // core in TEST_F()
144 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum()); in TEST_F()
145 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin()); in TEST_F()
146 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey))); in TEST_F()
199 OatHeader* oat_header = OatHeader::Create(instruction_set, in TEST_F() local
205 ASSERT_NE(oat_header, nullptr); in TEST_F()
206 ASSERT_TRUE(oat_header->IsValid()); in TEST_F()
208 char* magic = const_cast<char*>(oat_header->GetMagic()); in TEST_F()
210 ASSERT_FALSE(oat_header->IsValid()); in TEST_F()
212 ASSERT_FALSE(oat_header->IsValid()); in TEST_F()