Home
last modified time | relevance | path

Searched refs:boot_image_rel_ro_entries_ (Results 1 – 2 of 2) sorted by relevance

/art/dex2oat/linker/
Doat_writer.cc375 boot_image_rel_ro_entries_(), in OatWriter()
744 writer_->boot_image_rel_ro_entries_.Overwrite(patch.BootImageOffset(), in VisitMethod()
1652 writer_->boot_image_rel_ro_entries_.Get(patch.BootImageOffset()); in VisitMethod()
2374 if (boot_image_rel_ro_entries_.empty() && app_image_rel_ro_type_entries_.empty()) { in InitDataImgRelRoLayout()
2381 for (auto& entry : boot_image_rel_ro_entries_) { in InitDataImgRelRoLayout()
3195 if (boot_image_rel_ro_entries_.empty() && app_image_rel_ro_type_entries_.empty()) { in WriteDataImgRelRo()
3201 data.reserve(boot_image_rel_ro_entries_.size() + app_image_rel_ro_type_entries_.size()); in WriteDataImgRelRo()
3202 for (const auto& entry : boot_image_rel_ro_entries_) { in WriteDataImgRelRo()
3227 DCHECK_EQ(data.size(), boot_image_rel_ro_entries_.size() + app_image_rel_ro_type_entries_.size()); in WriteDataImgRelRo()
Doat_writer.h443 SafeMap<uint32_t, size_t> boot_image_rel_ro_entries_; variable