Home
last modified time | relevance | path

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

/art/runtime/
Doat_file.cc237 if (!GetOatHeader().IsValid()) { in Setup()
238 std::string cause = GetOatHeader().GetValidationErrorMessage(); in Setup()
251 oat += GetOatHeader().GetKeyValueStoreSize(); in Setup()
258 GetOatHeader().GetKeyValueStoreSize(), in Setup()
263 size_t pointer_size = GetInstructionSetPointerSize(GetOatHeader().GetInstructionSet()); in Setup()
265 uint32_t dex_file_count = GetOatHeader().GetDexFileCount(); in Setup()
1051 const OatHeader& OatFile::GetOatHeader() const { in GetOatHeader() function in art::OatFile
1311 return GetOatHeader().HasPatchInfo(); in HasPatchInfo()
1315 return GetOatHeader().IsPic(); in IsPic()
1320 return GetOatHeader().IsDebuggable(); in IsDebuggable()
[all …]
Doat_file.h106 const OatHeader& GetOatHeader() const;
Doat_file_assistant.cc544 } else if (file.GetOatHeader().GetImageFileLocationOatChecksum() in GivenOatFileIsOutOfDate()
590 const OatHeader& oat_header = file.GetOatHeader(); in GivenOatFileIsUpToDate()
Doat_file_manager.cc500 shared_libraries(oat_file->GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey)); in HasCollisions()
Doat_file_assistant_test.cc241 const OatHeader& oat_header = odex_file->GetOatHeader(); in GenerateOdexForTest()
Druntime.cc859 const OatHeader& boot_oat_header = oat_file->GetOatHeader(); in OpenDexFilesFromImage()
Dclass_linker.cc960 const OatHeader& default_oat_header = oat_files[0]->GetOatHeader(); in InitFromBootImage()
963 const char* image_file_location = oat_files[0]->GetOatHeader(). in InitFromBootImage()
973 const OatHeader& ith_oat_header = oat_files[i]->GetOatHeader(); in InitFromBootImage()
1602 if (oat_file->GetOatHeader().GetDexFileCount() != in AddImageSpace()
/art/test/common/
Druntime_state.cc89 const char* cmd_line = oat_file->GetOatHeader().GetStoreValueByKey(OatHeader::kDex2OatCmdLineKey); in Java_Main_compiledWithOptimizing()
/art/compiler/
Dimage_test.cc140 size_t rodata_size = oat_writer.GetOatHeader().GetExecutableOffset(); in TestWriteRead()
161 writer->UpdateOatFileHeader(/* oat_index */ 0u, oat_writer.GetOatHeader()); in TestWriteRead()
Doat_writer.h183 const OatHeader& GetOatHeader() const { in GetOatHeader() function
Doat_test.cc207 size_t rodata_size = oat_writer.GetOatHeader().GetExecutableOffset(); in DoWriteElf()
386 const OatHeader& oat_header = oat_file->GetOatHeader(); in TEST_F()
Dimage_writer.cc2032 const OatHeader& header = oat_file->GetOatHeader(); in GetOatAddress()
/art/oatdump/
Doatdump.cc111 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); in Symbolize()
113 isa, oat_file_->GetOatHeader().GetInstructionSetFeaturesBitmap()); in Symbolize()
127 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Symbolize()
158 for (const auto& trampoline : debug::MakeTrampolineInfos(oat_file_->GetOatHeader())) { in Symbolize()
241 const OatHeader& oat_header = oat_file_->GetOatHeader(); in WalkOatMethod()
334 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), in OatDumper()
356 const OatHeader& oat_header = oat_file_.GetOatHeader(); in Dump()
486 return oat_file_.GetOatHeader().GetInstructionSet(); in GetOatInstructionSet()
564 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) { in AddOffsets()
2356 if (Is64BitInstructionSet(oat_file->GetOatHeader().GetInstructionSet())) { in SymbolizeOat()
/art/runtime/gc/space/
Dimage_space.cc1199 const uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum(); in Init()
1422 runtime->SetInstructionSet(space->oat_file_non_owned_->GetOatHeader().GetInstructionSet()); in Init()
1461 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum(); in OpenOatFile()
1469 int32_t oat_patch_delta = oat_file->GetOatHeader().GetImagePatchDelta(); in OpenOatFile()
/art/patchoat/
Dpatchoat.cc95 static const OatHeader* GetOatHeader(const ElfFile* elf_file) { in GetOatHeader() function
108 const OatHeader* oat_header = GetOatHeader(elf_file); in ReadOatPatchDelta()
406 const OatHeader* oat_header = GetOatHeader(oat_in); in IsOatPic()
/art/dex2oat/
Ddex2oat.cc1677 size_t rodata_size = oat_writer->GetOatHeader().GetExecutableOffset(); in WriteOatFiles()
1697 oat_writer->AddMethodDebugInfos(debug::MakeTrampolineInfos(oat_writer->GetOatHeader())); in WriteOatFiles()
1731 image_writer_->UpdateOatFileHeader(i, oat_writer->GetOatHeader()); in WriteOatFiles()
/art/runtime/gc/
Dheap.cc312 const OatHeader& boot_oat_header = boot_oat_file->GetOatHeader(); in Heap()