Lines Matching refs:ImageSection
314 std::vector<ImageSection> image_sections = image_info.CreateImageSections().second; in CopyMetadata()
533 ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); in Write()
536 bitmap_section = ImageSection(out_offset, bitmap_section.Size()); in Write()
2453 std::pair<size_t, std::vector<ImageSection>> ImageWriter::ImageInfo::CreateImageSections() const { in CreateImageSections()
2454 std::vector<ImageSection> sections(ImageHeader::kSectionCount); in CreateImageSections()
2463 ImageSection(0u, image_end_); in CreateImageSections()
2469 ImageSection(GetBinSlotOffset(Bin::kArtField), GetBinSlotSize(Bin::kArtField)); in CreateImageSections()
2475 ImageSection(GetBinSlotOffset(Bin::kArtMethodClean), in CreateImageSections()
2483 ImageSection(GetBinSlotOffset(Bin::kImTable), GetBinSlotSize(Bin::kImTable)); in CreateImageSections()
2489 … ImageSection(GetBinSlotOffset(Bin::kIMTConflictTable), GetBinSlotSize(Bin::kIMTConflictTable)); in CreateImageSections()
2495 ImageSection(GetBinSlotOffset(Bin::kRuntimeMethod), GetBinSlotSize(Bin::kRuntimeMethod)); in CreateImageSections()
2504 const ImageSection& interned_strings_section = in CreateImageSections()
2506 ImageSection(cur_pos, intern_table_bytes_); in CreateImageSections()
2515 const ImageSection& class_table_section = in CreateImageSections()
2517 ImageSection(cur_pos, class_table_bytes_); in CreateImageSections()
2530 const ImageSection& string_reference_offsets = in CreateImageSections()
2532 ImageSection(cur_pos, sizeof(string_reference_offsets_[0]) * num_string_references_); in CreateImageSections()
2541 const ImageSection& metadata_section = in CreateImageSections()
2543 ImageSection(cur_pos, GetBinSlotSize(Bin::kMetadata)); in CreateImageSections()
2597 std::vector<ImageSection>& sections = section_info_pair.second; in CreateHeader()
2602 *bitmap_section = ImageSection(RoundUp(image_end, kPageSize), RoundUp(bitmap_bytes, kPageSize)); in CreateHeader()
2606 for (const ImageSection& section : sections) { in CreateHeader()
2801 const ImageSection& intern_table_section = image_header->GetInternedStringsSection(); in CopyAndFixupNativeData()
2831 const ImageSection& class_table_section = image_header->GetClassTableSection(); in CopyAndFixupNativeData()