Searched refs:ImageSection (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | image.h | 27 class PACKED(4) ImageSection { 29 ImageSection() : offset_(0), size_(0) { } in ImageSection() function 30 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } in ImageSection() function 31 ImageSection(const ImageSection& section) = default; 32 ImageSection& operator=(const ImageSection& section) = default; 62 ImageSection* sections, 153 const ImageSection& GetImageSection(ImageSections index) const; 154 const ImageSection& GetMethodsSection() const { in GetMethodsSection() 211 ImageSection sections_[kSectionCount]; 222 std::ostream& operator<<(std::ostream& os, const ImageSection& section);
|
D | image.cc | 31 ImageSection* sections, in ImageHeader() 141 const ImageSection& ImageHeader::GetImageSection(ImageSections index) const { in GetImageSection() 146 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<()
|
D | intern_table.cc | 157 const ImageSection& section = header->GetImageSection(ImageHeader::kSectionInternedStrings); in AddImageStringsToTable() 297 const ImageSection& intern_section = image_space->GetImageHeader().GetImageSection( in AddImageInternTable()
|
/art/compiler/ |
D | image_writer.cc | 210 …const ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitma… in Write() 974 ImageSection sections[ImageHeader::kSectionCount]; in CreateHeader() 977 *objects_section = ImageSection(0u, image_end_); in CreateHeader() 981 *field_section = ImageSection(cur_pos, bin_slot_sizes_[kBinArtField]); in CreateHeader() 987 *methods_section = ImageSection(cur_pos, bin_slot_sizes_[kBinArtMethodClean] + in CreateHeader() 994 *interned_strings_section = ImageSection(cur_pos, intern_table_bytes_); in CreateHeader() 999 *bitmap_section = ImageSection(RoundUp(cur_pos, kPageSize), RoundUp(bitmap_bytes, kPageSize)); in CreateHeader() 1003 for (const ImageSection& section : sections) { in CreateHeader() 1079 const ImageSection& methods_section = image_header->GetMethodsSection(); in CopyAndFixupNativeData() 1093 const ImageSection& intern_table_section = image_header->GetImageSection( in CopyAndFixupNativeData()
|
D | image_test.cc | 210 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F()
|