Lines Matching refs:image_header
198 const ImageHeader& image_header) in RemoteContentsPointerToLocal() argument
207 const uint8_t* local_ptr = reinterpret_cast<const uint8_t*>(&image_header) + boot_offset; in RemoteContentsPointerToLocal()
237 const ImageHeader& image_header) : in RegionCommon()
242 image_header_(image_header), in RegionCommon()
384 const ImageHeader& image_header, in RegionSpecializedBase() argument
386 : RegionCommon<mirror::Object>(os, remote_contents, zygote_contents, boot_map, image_header), in RegionSpecializedBase()
713 const ImageHeader& image_header, in RegionSpecializedBase() argument
715 : RegionCommon<ArtMethod>(os, remote_contents, zygote_contents, boot_map, image_header), in RegionSpecializedBase()
953 const ImageHeader& image_header, in RegionData() argument
959 image_header, in RegionData()
1224 const ImageHeader& image_header = space->GetImageHeader(); in Init() local
1225 const uint8_t* image_begin = image_header.GetImageBegin(); in Init()
1226 const uint8_t* image_end = AlignUp(image_begin + image_header.GetImageSize(), kPageSize); in Init()
1286 bool Dump(const ImageHeader& image_header, const std::string& image_location) in Dump() argument
1291 os << "MAGIC: " << image_header.GetMagic() << "\n\n"; in Dump()
1293 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header.GetImageBegin()) << "\n\n"; in Dump()
1300 ret = DumpImageDiff(image_header, image_location); in Dump()
1310 bool DumpImageDiff(const ImageHeader& image_header, const std::string& image_location) in DumpImageDiff() argument
1312 return DumpImageDiffMap(image_header, image_location); in DumpImageDiff()
1315 bool ComputeDirtyBytes(const ImageHeader& image_header, in ComputeDirtyBytes() argument
1334 const uint8_t* local_ptr = reinterpret_cast<const uint8_t*>(&image_header) + offset; in ComputeDirtyBytes()
1355 ptrdiff_t page_off_begin = image_header.GetImageBegin() - image_begin; in ComputeDirtyBytes()
1363 const uint8_t* local_ptr = reinterpret_cast<const uint8_t*>(&image_header) + offset; in ComputeDirtyBytes()
1408 if (image_header.GetImageSection(section).Contains(offset)) { in ComputeDirtyBytes()
1432 os << section << " " << image_header.GetImageSection(section) in ComputeDirtyBytes()
1441 bool DumpImageDiffMap(const ImageHeader& image_header, const std::string& image_location) in DumpImageDiffMap() argument
1480 boot_map.end = RoundUp(boot_map.start + image_header.GetImageSize(), kPageSize); in DumpImageDiffMap()
1494 zygote_boot_map.end = RoundUp(zygote_boot_map.start + image_header.GetImageSize(), kPageSize); in DumpImageDiffMap()
1507 << reinterpret_cast<const void*>(&image_header) in DumpImageDiffMap()
1510 const uint8_t* image_begin_unaligned = image_header.GetImageBegin(); in DumpImageDiffMap()
1511 const uint8_t* image_end_unaligned = image_begin_unaligned + image_header.GetImageSize(); in DumpImageDiffMap()
1581 if (!ComputeDirtyBytes(image_header, image_begin, boot_map, remote_contents, &mapping_data)) { in DumpImageDiffMap()
1598 image_header, in DumpImageDiffMap()
1609 image_header, in DumpImageDiffMap()
1844 const ImageHeader& image_header = image_space->GetImageHeader(); in DumpImage() local
1845 if (!image_header.IsValid()) { in DumpImage()
1850 if (!img_diag_dumper.Dump(image_header, image_space->GetImageLocation())) { in DumpImage()