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()
712 const ImageHeader& image_header, in RegionSpecializedBase() argument
714 : RegionCommon<ArtMethod>(os, remote_contents, zygote_contents, boot_map, image_header), in RegionSpecializedBase()
952 const ImageHeader& image_header, in RegionData() argument
958 image_header, in RegionData()
1223 const ImageHeader& image_header = space->GetImageHeader(); in Init() local
1224 const uint8_t* image_begin = image_header.GetImageBegin(); in Init()
1225 const uint8_t* image_end = AlignUp(image_begin + image_header.GetImageSize(), kPageSize); in Init()
1285 bool Dump(const ImageHeader& image_header, const std::string& image_location) in Dump() argument
1290 os << "MAGIC: " << image_header.GetMagic() << "\n\n"; in Dump()
1292 os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header.GetImageBegin()) << "\n\n"; in Dump()
1299 ret = DumpImageDiff(image_header, image_location); in Dump()
1309 bool DumpImageDiff(const ImageHeader& image_header, const std::string& image_location) in DumpImageDiff() argument
1311 return DumpImageDiffMap(image_header, image_location); in DumpImageDiff()
1314 bool ComputeDirtyBytes(const ImageHeader& image_header, in ComputeDirtyBytes() argument
1333 const uint8_t* local_ptr = reinterpret_cast<const uint8_t*>(&image_header) + offset; in ComputeDirtyBytes()
1354 ptrdiff_t page_off_begin = image_header.GetImageBegin() - image_begin; in ComputeDirtyBytes()
1362 const uint8_t* local_ptr = reinterpret_cast<const uint8_t*>(&image_header) + offset; in ComputeDirtyBytes()
1407 if (image_header.GetImageSection(section).Contains(offset)) { in ComputeDirtyBytes()
1431 os << section << " " << image_header.GetImageSection(section) in ComputeDirtyBytes()
1440 bool DumpImageDiffMap(const ImageHeader& image_header, const std::string& image_location) in DumpImageDiffMap() argument
1479 boot_map.end = RoundUp(boot_map.start + image_header.GetImageSize(), kPageSize); in DumpImageDiffMap()
1493 zygote_boot_map.end = RoundUp(zygote_boot_map.start + image_header.GetImageSize(), kPageSize); in DumpImageDiffMap()
1506 << reinterpret_cast<const void*>(&image_header) in DumpImageDiffMap()
1509 const uint8_t* image_begin_unaligned = image_header.GetImageBegin(); in DumpImageDiffMap()
1510 const uint8_t* image_end_unaligned = image_begin_unaligned + image_header.GetImageSize(); in DumpImageDiffMap()
1580 if (!ComputeDirtyBytes(image_header, image_begin, boot_map, remote_contents, &mapping_data)) { in DumpImageDiffMap()
1597 image_header, in DumpImageDiffMap()
1608 image_header, in DumpImageDiffMap()
1843 const ImageHeader& image_header = image_space->GetImageHeader(); in DumpImage() local
1844 if (!image_header.IsValid()) { in DumpImage()
1849 if (!img_diag_dumper.Dump(image_header, image_space->GetImageLocation())) { in DumpImage()