Searched refs:ImageSection (Results 1 – 12 of 12) sorted by relevance
/art/runtime/ |
D | image.h | 44 class PACKED(4) ImageSection { 46 ImageSection() : offset_(0), size_(0) { } in ImageSection() function 47 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } in ImageSection() function 48 ImageSection(const ImageSection& section) = default; 49 ImageSection& operator=(const ImageSection& section) = default; 131 ImageSection* sections, 271 ImageSection& GetImageSection(ImageSections index) { in GetImageSection() 276 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection() 281 const ImageSection& GetObjectsSection() const { in GetObjectsSection() 285 const ImageSection& GetFieldsSection() const { in GetFieldsSection() [all …]
|
D | image-inl.h | 54 const ImageSection& fields = GetFieldsSection(); in VisitPackedArtFields() 70 const ImageSection& methods = GetMethodsSection(); in VisitPackedArtMethods() 78 const ImageSection& runtime_methods = GetRuntimeMethodsSection(); in VisitPackedArtMethods() 90 const ImageSection& section = GetImTablesSection(); in VisitPackedImTables() 108 const ImageSection& section = GetIMTConflictTablesSection(); in VisitPackedImtConflictTables()
|
D | image.cc | 38 ImageSection* sections, in ImageHeader() 132 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<() 140 const ImageSection& objects = GetObjectsSection(); in VisitObjects()
|
D | intern_table-inl.h | 33 const ImageSection& section = header.GetInternedStringsSection(); in AddImageStringsToTable()
|
D | stack.cc | 648 const ImageSection& methods = header.GetMethodsSection(); in SanityCheckFrame() 649 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection(); in SanityCheckFrame()
|
D | class_linker.cc | 1404 const ImageSection& objects_section = image_header.GetObjectsSection(); in VerifyStringInterning() 1562 const ImageSection& sro_section = in UpdateInternStrings() 1936 std::vector<const ImageSection*> method_sections_; 1937 std::vector<const ImageSection*> runtime_method_sections_; 2179 const ImageSection& class_table_section = header.GetClassTableSection(); in AddImageSpace()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 632 std::vector<ImageSection> image_sections = image_info.CreateImageSections().second; in CopyMetadata() 851 ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); in Write() 854 bitmap_section = ImageSection(out_offset, bitmap_section.Size()); in Write() 2545 std::pair<size_t, std::vector<ImageSection>> ImageWriter::ImageInfo::CreateImageSections() const { in CreateImageSections() 2546 std::vector<ImageSection> sections(ImageHeader::kSectionCount); in CreateImageSections() 2555 ImageSection(0u, image_end_); in CreateImageSections() 2561 ImageSection(GetBinSlotOffset(Bin::kArtField), GetBinSlotSize(Bin::kArtField)); in CreateImageSections() 2567 ImageSection(GetBinSlotOffset(Bin::kArtMethodClean), in CreateImageSections() 2575 ImageSection(GetBinSlotOffset(Bin::kImTable), GetBinSlotSize(Bin::kImTable)); in CreateImageSections() 2581 … ImageSection(GetBinSlotOffset(Bin::kIMTConflictTable), GetBinSlotSize(Bin::kIMTConflictTable)); in CreateImageSections() [all …]
|
D | image_test.cc | 75 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F()
|
D | image_writer.h | 297 std::pair<size_t, std::vector<ImageSection>> CreateImageSections() const;
|
/art/compiler/optimizing/ |
D | sharpening.cc | 42 const ImageSection& method_section = image_space->GetImageHeader().GetMethodsSection(); in IsInBootImage()
|
/art/runtime/gc/collector/ |
D | immune_spaces_test.cc | 113 ImageSection sections[ImageHeader::kSectionCount]; in CreateImageSpace()
|
/art/runtime/gc/space/ |
D | image_space.cc | 866 const ImageSection& image_objects = image_header->GetObjectsSection(); in Init() 1169 const ImageSection& objects_section = image_header.GetObjectsSection(); in RelocateInPlace() 2378 const ImageSection& section = header.GetImageSection(section_type); in DumpSections() 2395 const ImageSection& metadata = GetImageHeader().GetMetadataSection(); in ReleaseMetadata()
|