Searched defs:oat_header (Results 1 - 4 of 4) sorted by relevance

/art/compiler/
H A Doat_test.cc105 const OatHeader& oat_header = oat_file->GetOatHeader(); local
106 ASSERT_TRUE(oat_header.IsValid());
107 ASSERT_EQ(2U, oat_header.GetDexFileCount()); // core and conscrypt
108 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
109 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
110 ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
156 OatHeader oat_header(instruction_set,
161 ASSERT_TRUE(oat_header.IsValid());
163 char* magic = const_cast<char*>(oat_header.GetMagic());
165 ASSERT_FALSE(oat_header
[all...]
H A Delf_writer_quick.cc199 const OatHeader& oat_header = oat_writer.GetOatHeader(); local
200 CHECK(oat_header.IsValid());
201 uint32_t oat_data_size = oat_header.GetExecutableOffset();
H A Dimage_writer.cc704 OatHeader& oat_header = const_cast<OatHeader&>(oat_file_->GetOatHeader()); local
718 oat_header.UpdateChecksum(patch_location, sizeof(value));
/art/oatdump/
H A Doatdump.cc108 const OatHeader& oat_header = oat_file_.GetOatHeader(); local
111 os << oat_header.GetMagic() << "\n\n";
114 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
117 os << oat_header.GetInstructionSet() << "\n\n";
120 os << oat_header.GetDexFileCount() << "\n\n";
123 os << StringPrintf("0x%08x\n\n", oat_header.GetExecutableOffset());
126 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatChecksum());
129 os << StringPrintf("0x%08x\n\n", oat_header.GetImageFileLocationOatDataBegin());
132 const std::string image_file_location(oat_header.GetImageFileLocation());

Completed in 207 milliseconds