HomeSort by relevance Sort by last modified time
    Searched full:oat_header (Results 1 - 10 of 10) sorted by null

  /art/compiler/
oat_test.cc 141 const OatHeader& oat_header = oat_file->GetOatHeader(); local
142 ASSERT_TRUE(oat_header.IsValid());
143 ASSERT_EQ(1U, oat_header.GetDexFileCount()); // core
144 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
145 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
146 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
199 OatHeader* oat_header = OatHeader::Create(instruction_set, local
205 ASSERT_NE(oat_header, nullptr);
206 ASSERT_TRUE(oat_header->IsValid());
208 char* magic = const_cast<char*>(oat_header->GetMagic())
    [all...]
elf_patcher.h 66 OatHeader* oat_header, uintptr_t oat_data_begin,
69 oat_header_(oat_header), oat_data_begin_(oat_data_begin), get_image_address_(cb),
oat_writer.cc     [all...]
elf_patcher.cc 67 OatHeader* oat_header = reinterpret_cast<OatHeader*>(elf->Begin() + data_sec->sh_offset); local
68 if (!oat_header->IsValid()) {
73 ElfPatcher p(driver, elf, oat_file, oat_header, oat_data_start, cb, cb_data, error_msg);
oat_writer.h 163 void UpdateChecksum(OatHeader* oat_header) const;
191 void UpdateChecksum(OatHeader* oat_header) const;
image_writer.cc 838 OatHeader* oat_header = GetOatHeaderFromElf(elf.get()); local
    [all...]
elf_writer_quick.cc 916 const OatHeader& oat_header = oat_writer->GetOatHeader(); local
    [all...]
  /art/oatdump/
oatdump.cc 158 const OatHeader& oat_header = oat_file_.GetOatHeader(); local
161 os << oat_header.GetMagic() << "\n\n";
164 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
167 os << oat_header.GetInstructionSet() << "\n\n";
170 os << oat_header.GetInstructionSetFeatures().GetFeatureString() << "\n\n";
173 os << oat_header.GetDexFileCount() << "\n\n";
177 os << StringPrintf("0x%08x", oat_header.offset()); \
178 if (oat_header.offset() != 0 && options_->absolute_addresses_) { \
179 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
208 oat_header.GetImagePatchDelta()
    [all...]
  /art/patchoat/
patchoat.cc 508 OatHeader* oat_header = reinterpret_cast<OatHeader*>(oat_file_->Begin() + rodata_sec->sh_offset); local
509 if (!oat_header->IsValid()) {
513 oat_header->RelocateOat(delta_);
    [all...]
  /art/runtime/
class_linker.cc 1099 const OatHeader& oat_header = oat_file->GetOatHeader(); local
1489 const OatHeader& oat_header = oat_file->GetOatHeader(); local
1519 const OatHeader& oat_header = oat_file->GetOatHeader(); local
    [all...]

Completed in 3586 milliseconds