Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dimage_space.cc1098 const ImageHeader& current_header = boot_image_spaces[space_pos]->GetImageHeader(); in ValidateBootImageChecksum() local
1099 if (current_header.GetComponentCount() > boot_image_component_count - component_count) { in ValidateBootImageChecksum()
1105 component_count + current_header.GetComponentCount()); in ValidateBootImageChecksum()
1108 component_count += current_header.GetComponentCount(); in ValidateBootImageChecksum()
1109 checksum ^= current_header.GetImageChecksum(); in ValidateBootImageChecksum()
1111 space_pos += current_header.GetImageSpaceCount(); in ValidateBootImageChecksum()
1112 boot_image_size += current_header.GetImageReservationSize(); in ValidateBootImageChecksum()
3017 const ImageHeader& current_header = spaces[space_pos]->GetImageHeader(); in DeduplicateInternedStrings() local
3018 size_t image_space_count = current_header.GetImageSpaceCount(); in DeduplicateInternedStrings()
3020 size_t dependency_component_count = current_header.GetBootImageComponentCount(); in DeduplicateInternedStrings()
[all …]
/art/runtime/gc/
Dheap.cc193 const ImageHeader& current_header = image_spaces[i + j]->GetImageHeader(); in VerifyBootImagesContiguity() local
195 CHECK_EQ(current_oat, current_header.GetOatFileBegin()); in VerifyBootImagesContiguity()
196 current_heap += RoundUp(current_header.GetImageSize(), kPageSize); in VerifyBootImagesContiguity()
197 CHECK_GT(current_header.GetOatFileEnd(), current_header.GetOatFileBegin()); in VerifyBootImagesContiguity()
198 current_oat = current_header.GetOatFileEnd(); in VerifyBootImagesContiguity()