Home
last modified time | relevance | path

Searched refs:GetBootImageRelocations (Results 1 – 3 of 3) sorted by relevance

/art/oatdump/
Doatdump.cc1589 if (oat_file_.GetBootImageRelocations().empty()) { in DumpDataImgRelRoEntries()
1594 os << oat_file_.GetBootImageRelocations().size() << " entries.\n"; in DumpDataImgRelRoEntries()
1603 for (const uint32_t& object_offset : oat_file_.GetBootImageRelocations()) { in DumpDataImgRelRoEntries()
1604 uint32_t entry_index = &object_offset - oat_file_.GetBootImageRelocations().data(); in DumpDataImgRelRoEntries()
1605 uint32_t entry_offset = entry_index * sizeof(oat_file_.GetBootImageRelocations()[0]); in DumpDataImgRelRoEntries()
1649 for (const uint32_t& object_offset : oat_file_.GetBootImageRelocations()) { in DumpDataImgRelRoEntries()
1650 uint32_t entry_index = &object_offset - oat_file_.GetBootImageRelocations().data(); in DumpDataImgRelRoEntries()
1651 uint32_t entry_offset = entry_index * sizeof(oat_file_.GetBootImageRelocations()[0]); in DumpDataImgRelRoEntries()
/art/runtime/oat/
Doat_file.h380 EXPORT ArrayRef<const uint32_t> GetBootImageRelocations() const;
Doat_file.cc2066 ArrayRef<const uint32_t> OatFile::GetBootImageRelocations() const { in GetBootImageRelocations() function in art::OatFile
2514 for (const uint32_t& relocation : GetBootImageRelocations()) { in InitializeRelocations()