Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.cc862 const ImageHeader& current_header = boot_image_spaces[space_pos]->GetImageHeader(); in ValidateBootImageChecksum() local
863 if (current_header.GetComponentCount() > boot_image_component_count - component_count) { in ValidateBootImageChecksum()
869 component_count + current_header.GetComponentCount()); in ValidateBootImageChecksum()
872 component_count += current_header.GetComponentCount(); in ValidateBootImageChecksum()
873 checksum ^= current_header.GetImageChecksum(); in ValidateBootImageChecksum()
875 space_pos += current_header.GetImageSpaceCount(); in ValidateBootImageChecksum()
876 boot_image_size += current_header.GetImageReservationSize(); in ValidateBootImageChecksum()
2719 const ImageHeader& current_header = spaces[space_pos]->GetImageHeader(); in DeduplicateInternedStrings() local
2720 size_t image_space_count = current_header.GetImageSpaceCount(); in DeduplicateInternedStrings()
2722 size_t dependency_component_count = current_header.GetBootImageComponentCount(); in DeduplicateInternedStrings()
[all …]
/art/runtime/gc/
Dheap.cc231 const ImageHeader& current_header = image_spaces[i + j]->GetImageHeader(); in VerifyBootImagesContiguity() local
233 CHECK_EQ(current_oat, current_header.GetOatFileBegin()); in VerifyBootImagesContiguity()
234 current_heap += RoundUp(current_header.GetImageSize(), kPageSize); in VerifyBootImagesContiguity()
235 CHECK_GT(current_header.GetOatFileEnd(), current_header.GetOatFileBegin()); in VerifyBootImagesContiguity()
236 current_oat = current_header.GetOatFileEnd(); in VerifyBootImagesContiguity()