Lines Matching refs:boot_map
184 const android::procinfo::MapInfo& boot_map) in FixUpRemotePointer() argument
194 if (remote < boot_map.start || remote >= boot_map.end) { in FixUpRemotePointer()
198 off_t boot_offset = remote - boot_map.start; in FixUpRemotePointer()
254 const android::procinfo::MapInfo& boot_map, in RegionCommon()
259 boot_map_(boot_map), in RegionCommon()
576 const android::procinfo::MapInfo& boot_map, in RegionSpecializedBase() argument
580 : RegionCommon<mirror::Object>(os, remote_contents, zygote_contents, boot_map, image_header), in RegionSpecializedBase()
899 const android::procinfo::MapInfo& boot_map, in RegionSpecializedBase() argument
903 : RegionCommon<ArtMethod>(os, remote_contents, zygote_contents, boot_map, image_header), in RegionSpecializedBase()
1138 const android::procinfo::MapInfo& boot_map, in RegionData() argument
1145 boot_map, in RegionData()
1424 const android::procinfo::MapInfo& boot_map, in ComputeDirtyBytes() argument
1430 for (uintptr_t begin = boot_map.start; begin != boot_map.end; begin += MemMap::GetPageSize()) { in ComputeDirtyBytes()
1431 const ptrdiff_t offset = begin - boot_map.start; in ComputeDirtyBytes()
1460 for (uintptr_t begin = boot_map.start; begin != boot_map.end; begin += MemMap::GetPageSize()) { in ComputeDirtyBytes()
1461 ptrdiff_t offset = begin - boot_map.start; in ComputeDirtyBytes()
1566 android::procinfo::MapInfo& boot_map = *maybe_boot_map; in DumpImageDiffMap() local
1568 CHECK(boot_map.end >= boot_map.start); in DumpImageDiffMap()
1572 boot_map.end = RoundUp(boot_map.start + image_header.GetImageSize(), MemMap::GetPageSize()); in DumpImageDiffMap()
1574 size_t boot_map_size = boot_map.end - boot_map.start; in DumpImageDiffMap()
1588 if (zygote_boot_map.start != boot_map.start) { in DumpImageDiffMap()
1592 << ", image begin " << reinterpret_cast<const void*>(boot_map.start) in DumpImageDiffMap()
1593 << ", image end " << reinterpret_cast<const void*>(boot_map.end); in DumpImageDiffMap()
1621 DCHECK_ALIGNED_PARAM(boot_map.start, MemMap::GetPageSize()); in DumpImageDiffMap()
1636 if (!mem_file->PreadFully(map->Begin(), boot_map_size, boot_map.start)) { in DumpImageDiffMap()
1660 if (static_cast<uintptr_t>(image_end - image_begin) != boot_map.end - boot_map.start) { in DumpImageDiffMap()
1664 ", remote begin " << reinterpret_cast<const void*>(boot_map.start) << in DumpImageDiffMap()
1665 ", remote end " << reinterpret_cast<const void*>(boot_map.end); in DumpImageDiffMap()
1685 boot_map, in DumpImageDiffMap()
1693 os << "Mapping at [" << reinterpret_cast<void*>(boot_map.start) << ", " in DumpImageDiffMap()
1694 << reinterpret_cast<void*>(boot_map.end) << ") had:\n "; in DumpImageDiffMap()
1701 boot_map, in DumpImageDiffMap()
1713 boot_map, in DumpImageDiffMap()