Lines Matching refs:ImageSection

332   std::vector<ImageSection> image_sections = image_info.CreateImageSections().second;  in CopyMetadata()
551 ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); in Write()
554 bitmap_section = ImageSection(out_offset, bitmap_section.Size()); in Write()
2515 std::pair<size_t, std::vector<ImageSection>> ImageWriter::ImageInfo::CreateImageSections() const { in CreateImageSections()
2516 std::vector<ImageSection> sections(ImageHeader::kSectionCount); in CreateImageSections()
2525 ImageSection(0u, image_end_); in CreateImageSections()
2531 ImageSection(GetBinSlotOffset(Bin::kArtField), GetBinSlotSize(Bin::kArtField)); in CreateImageSections()
2537 ImageSection(GetBinSlotOffset(Bin::kArtMethodClean), in CreateImageSections()
2545 ImageSection(GetBinSlotOffset(Bin::kImTable), GetBinSlotSize(Bin::kImTable)); in CreateImageSections()
2551ImageSection(GetBinSlotOffset(Bin::kIMTConflictTable), GetBinSlotSize(Bin::kIMTConflictTable)); in CreateImageSections()
2557 ImageSection(GetBinSlotOffset(Bin::kRuntimeMethod), GetBinSlotSize(Bin::kRuntimeMethod)); in CreateImageSections()
2562 const ImageSection& dex_cache_arrays_section = in CreateImageSections()
2564 ImageSection(GetBinSlotOffset(Bin::kDexCacheArray), in CreateImageSections()
2574 const ImageSection& interned_strings_section = in CreateImageSections()
2576 ImageSection(cur_pos, intern_table_bytes_); in CreateImageSections()
2585 const ImageSection& class_table_section = in CreateImageSections()
2587 ImageSection(cur_pos, class_table_bytes_); in CreateImageSections()
2600 const ImageSection& string_reference_offsets = in CreateImageSections()
2602 ImageSection(cur_pos, sizeof(string_reference_offsets_[0]) * num_string_references_); in CreateImageSections()
2612 const ImageSection& metadata_section = in CreateImageSections()
2614 ImageSection(cur_pos, GetBinSlotSize(Bin::kMetadata)); in CreateImageSections()
2668 std::vector<ImageSection>& sections = section_info_pair.second; in CreateHeader()
2673 *bitmap_section = ImageSection(RoundUp(image_end, kPageSize), RoundUp(bitmap_bytes, kPageSize)); in CreateHeader()
2677 for (const ImageSection& section : sections) { in CreateHeader()
2873 const ImageSection& intern_table_section = image_header->GetInternedStringsSection(); in CopyAndFixupNativeData()
2898 const ImageSection& class_table_section = image_header->GetClassTableSection(); in CopyAndFixupNativeData()