Home
last modified time | relevance | path

Searched refs:GetOatHeader (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Doat_file.cc233 if (!GetOatHeader().IsValid()) { in Setup()
244 oat += GetOatHeader().GetKeyValueStoreSize(); in Setup()
248 Begin(), sizeof(OatHeader), GetOatHeader().GetKeyValueStoreSize(), in Setup()
253 uint32_t dex_file_count = GetOatHeader().GetDexFileCount(); in Setup()
354 const OatHeader& OatFile::GetOatHeader() const { in GetOatHeader() function in art::OatFile
604 return GetOatHeader().IsPic(); in IsPic()
Doat_file.h88 const OatHeader& GetOatHeader() const;
Dclass_linker.cc996 uint32_t actual_image_oat_checksum = oat_file->GetOatHeader().GetImageFileLocationOatChecksum(); in FindOatFileInOatLocationForDexFile()
1005 uint32_t actual_image_oat_offset = oat_file->GetOatHeader().GetImageFileLocationOatDataBegin(); in FindOatFileInOatLocationForDexFile()
1013 int32_t actual_patch_delta = oat_file->GetOatHeader().GetImagePatchDelta(); in FindOatFileInOatLocationForDexFile()
1084 return oat_file->GetOatHeader().GetImageFileLocationOatChecksum() == image_oat_checksum; in VerifyOatImageChecksum()
1115 const OatHeader& oat_header = oat_file->GetOatHeader(); in VerifyOatChecksums()
1126 oat_file->GetOatHeader().GetImageFileLocationOatChecksum(), in VerifyOatChecksums()
1127 oat_file->GetOatHeader().GetImageFileLocationOatDataBegin(), in VerifyOatChecksums()
1128 oat_file->GetOatHeader().GetImagePatchDelta(), in VerifyOatChecksums()
1526 const OatHeader& oat_header = oat_file->GetOatHeader(); in CheckOatFile()
1608 CHECK_EQ(oat_file.GetOatHeader().GetImageFileLocationOatChecksum(), 0U); in InitFromImage()
[all …]
/art/compiler/
Dimage_writer.cc104 oat_file_->GetOatHeader().GetInterpreterToInterpreterBridgeOffset(); in Write()
106 oat_file_->GetOatHeader().GetInterpreterToCompiledCodeBridgeOffset(); in Write()
108 jni_dlsym_lookup_offset_ = oat_file_->GetOatHeader().GetJniDlsymLookupOffset(); in Write()
111 oat_file_->GetOatHeader().GetPortableImtConflictTrampolineOffset(); in Write()
113 oat_file_->GetOatHeader().GetPortableResolutionTrampolineOffset(); in Write()
115 oat_file_->GetOatHeader().GetPortableToInterpreterBridgeOffset(); in Write()
118 oat_file_->GetOatHeader().GetQuickGenericJniTrampolineOffset(); in Write()
120 oat_file_->GetOatHeader().GetQuickImtConflictTrampolineOffset(); in Write()
122 oat_file_->GetOatHeader().GetQuickResolutionTrampolineOffset(); in Write()
124 oat_file_->GetOatHeader().GetQuickToInterpreterBridgeOffset(); in Write()
[all …]
Delf_writer_mclinker.cc165 const char* oat_data_start = reinterpret_cast<const char*>(&oat_file->GetOatHeader()); in AddOatInput()
166 const size_t oat_data_length = oat_file->GetOatHeader().GetExecutableOffset(); in AddOatInput()
Doat_test.cc141 const OatHeader& oat_header = oat_file->GetOatHeader(); in TEST_F()
Doat_writer.h87 const OatHeader& GetOatHeader() const { in GetOatHeader() function
Delf_writer_quick.cc917 const OatHeader& oat_header = oat_writer->GetOatHeader(); in Write()
/art/patchoat/
Dpatchoat.h123 static const OatHeader* GetOatHeader(const ElfFile* elf_file);
Dpatchoat.cc382 const OatHeader* oat_header = GetOatHeader(oat_in); in IsOatPic()
501 const OatHeader* PatchOat::GetOatHeader(const ElfFile* elf_file) { in GetOatHeader() function in art::PatchOat
/art/runtime/gc/space/
Dimage_space.cc709 runtime->SetInstructionSet(space->oat_file_->GetOatHeader().GetInstructionSet()); in Init()
752 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum(); in OpenOatFile()
760 int32_t oat_patch_delta = oat_file->GetOatHeader().GetImagePatchDelta(); in OpenOatFile()
/art/oatdump/
Doatdump.cc146 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), in OatDumper()
164 const OatHeader& oat_header = oat_file_.GetOatHeader(); in Dump()
274 return oat_file_.GetOatHeader().GetInstructionSet(); in GetOatInstructionSet()
352 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) { in AddOffsets()