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

  /art/runtime/
dexopt_test.cc 119 const OatHeader& oat_header = odex_file->GetOatHeader(); local
124 EXPECT_NE(combined_checksum, oat_header.GetImageFileLocationOatChecksum());
126 EXPECT_EQ(combined_checksum, oat_header.GetImageFileLocationOatChecksum());
134 oat_header.GetImageFileLocationOatDataBegin());
135 EXPECT_EQ(image_header->GetPatchDelta(), oat_header.GetImagePatchDelta());
138 oat_header.GetImageFileLocationOatDataBegin());
139 EXPECT_NE(image_header->GetPatchDelta(), oat_header.GetImagePatchDelta());
oat_file_assistant.cc 484 const OatHeader& oat_header = file.GetOatHeader(); local
485 uintptr_t oat_data_begin = oat_header.GetImageFileLocationOatDataBegin();
496 int32_t oat_patch_delta = oat_header.GetImagePatchDelta();
    [all...]
  /art/compiler/
oat_test.cc 428 const OatHeader& oat_header = oat_file->GetOatHeader(); local
429 ASSERT_TRUE(oat_header.IsValid());
430 ASSERT_EQ(class_linker->GetBootClassPath().size(), oat_header.GetDexFileCount()); // core
431 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
432 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
433 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
499 std::unique_ptr<OatHeader> oat_header(OatHeader::Create(insn_set,
503 ASSERT_NE(oat_header.get(), nullptr);
504 ASSERT_TRUE(oat_header->IsValid());
506 char* magic = const_cast<char*>(oat_header->GetMagic())
    [all...]
  /art/patchoat/
patchoat.cc 64 OatHeader* oat_header = reinterpret_cast<OatHeader*>(elf_file->Begin() + off); local
65 return oat_header;
334 const OatHeader* oat_header = GetOatHeader(oat_in); local
335 if (oat_header == nullptr) {
340 if (!oat_header->IsValid()) {
345 bool is_pic = oat_header->IsPic();
  /art/oatdump/
oatdump.cc 257 const OatHeader& oat_header = oat_file_->GetOatHeader(); local
264 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset();
275 info.isa = oat_header.GetInstructionSet();
277 info.is_native_debuggable = oat_header.IsNativeDebuggable();
376 const OatHeader& oat_header = oat_file_.GetOatHeader(); local
379 os << oat_header.GetMagic() << "\n\n";
385 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum());
388 os << oat_header.GetInstructionSet() << "\n\n";
392 InstructionSetFeatures::FromBitmap(oat_header.GetInstructionSet(),
393 oat_header.GetInstructionSetFeaturesBitmap()))
    [all...]

Completed in 86 milliseconds