Home
last modified time | relevance | path

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

/art/runtime/
Doat_file.cc381 if (!GetOatHeader().IsValid()) { in Setup()
382 std::string cause = GetOatHeader().GetValidationErrorMessage(); in Setup()
394 oat += GetOatHeader().GetKeyValueStoreSize(); in Setup()
398 Begin(), sizeof(OatHeader), GetOatHeader().GetKeyValueStoreSize(), in Setup()
403 uint32_t dex_file_count = GetOatHeader().GetDexFileCount(); in Setup()
506 const OatHeader& OatFile::GetOatHeader() const { in GetOatHeader() function in art::OatFile
756 return GetOatHeader().IsPic(); in IsPic()
761 return GetOatHeader().IsDebuggable(); in IsDebuggable()
Doat_file.h97 const OatHeader& GetOatHeader() const;
Doat_file_assistant.cc445 if (file.GetOatHeader().GetImageFileLocationOatChecksum() != image_info->oat_checksum) { in GivenOatFileIsOutOfDate()
475 const OatHeader& oat_header = file.GetOatHeader(); in GivenOatFileIsUpToDate()
Dclass_linker.cc1112 CHECK_EQ(oat_file.GetOatHeader().GetImageFileLocationOatChecksum(), 0U); in InitFromImage()
1113 CHECK_EQ(oat_file.GetOatHeader().GetImageFileLocationOatDataBegin(), 0U); in InitFromImage()
1114 const char* image_file_location = oat_file.GetOatHeader(). in InitFromImage()
1117 quick_resolution_trampoline_ = oat_file.GetOatHeader().GetQuickResolutionTrampoline(); in InitFromImage()
1118 quick_imt_conflict_trampoline_ = oat_file.GetOatHeader().GetQuickImtConflictTrampoline(); in InitFromImage()
1119 quick_generic_jni_trampoline_ = oat_file.GetOatHeader().GetQuickGenericJniTrampoline(); in InitFromImage()
1120 quick_to_interpreter_bridge_trampoline_ = oat_file.GetOatHeader().GetQuickToInterpreterBridge(); in InitFromImage()
1135 CHECK_EQ(oat_file.GetOatHeader().GetDexFileCount(), in InitFromImage()
Doat_file_assistant_test.cc720 const OatHeader& oat_header = oat_file->GetOatHeader(); in TEST_F()
/art/patchoat/
Dpatchoat.h167 static const OatHeader* GetOatHeader(const ElfFile* elf_file);
171 static const OatHeader* GetOatHeader(const ElfFileImpl* elf_file);
Dpatchoat.cc366 const OatHeader* oat_header = GetOatHeader(oat_in); in IsOatPic()
566 const OatHeader* PatchOat::GetOatHeader(const ElfFile* elf_file) { in GetOatHeader() function in art::PatchOat
568 return GetOatHeader<ElfFileImpl64>(elf_file->GetImpl64()); in GetOatHeader()
570 return GetOatHeader<ElfFileImpl32>(elf_file->GetImpl32()); in GetOatHeader()
575 const OatHeader* PatchOat::GetOatHeader(const ElfFileImpl* elf_file) { in GetOatHeader() function in art::PatchOat
/art/compiler/
Dimage_writer.cc154 oat_file_->GetOatHeader().GetInterpreterToInterpreterBridgeOffset(); in Write()
156 oat_file_->GetOatHeader().GetInterpreterToCompiledCodeBridgeOffset(); in Write()
158 jni_dlsym_lookup_offset_ = oat_file_->GetOatHeader().GetJniDlsymLookupOffset(); in Write()
161 oat_file_->GetOatHeader().GetQuickGenericJniTrampolineOffset(); in Write()
163 oat_file_->GetOatHeader().GetQuickImtConflictTrampolineOffset(); in Write()
165 oat_file_->GetOatHeader().GetQuickResolutionTrampolineOffset(); in Write()
167 oat_file_->GetOatHeader().GetQuickToInterpreterBridgeOffset(); in Write()
1015 sections, image_roots_address_, oat_file_->GetOatHeader().GetChecksum(), in CreateHeader()
Doat_test.cc128 const OatHeader& oat_header = oat_file->GetOatHeader(); in TEST_F()
Doat_writer.h93 const OatHeader& GetOatHeader() const { in GetOatHeader() function
Delf_writer_quick.cc149 const size_t rodata_size = oat_writer->GetOatHeader().GetExecutableOffset(); in Write()
/art/oatdump/
Doatdump.cc88 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Write()
101 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Write()
124 Elf32_Word rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Symbolize()
131 oat_file_->GetOatHeader().GetInstructionSet(), in Symbolize()
283 oat_method.GetCodeOffset() - oat_file_->GetOatHeader().GetExecutableOffset(), in AddSymbol()
351 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), in OatDumper()
372 const OatHeader& oat_header = oat_file_.GetOatHeader(); in Dump()
496 return oat_file_.GetOatHeader().GetInstructionSet(); in GetOatInstructionSet()
574 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) { in AddOffsets()
/art/runtime/gc/space/
Dimage_space.cc766 runtime->SetInstructionSet(space->oat_file_->GetOatHeader().GetInstructionSet()); in Init()
801 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum(); in OpenOatFile()
809 int32_t oat_patch_delta = oat_file->GetOatHeader().GetImagePatchDelta(); in OpenOatFile()