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, 279 ImageSection& GetImageSection(ImageSections index) { in GetImageSection() 284 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection() 289 const ImageSection& GetObjectsSection() const { in GetObjectsSection() 293 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 | 39 ImageSection* sections, in ImageHeader() 152 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<() 160 const ImageSection& objects = GetObjectsSection(); in VisitObjects()
|
D | intern_table-inl.h | 83 const ImageSection& section = header.GetInternedStringsSection(); in AddImageStringsToTable()
|
D | stack.cc | 721 const ImageSection& methods = header.GetMethodsSection(); in ValidateFrame() 722 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection(); in ValidateFrame()
|
D | class_linker.cc | 1441 const ImageSection& objects_section = image_header.GetObjectsSection(); in CountInternedStringReferences() 1474 const ImageSection& sro_section = in VisitInternedStringReferences() 1515 const ImageSection& section = space->GetImageHeader().GetInternedStringsSection(); in VerifyInternedStringReferences() 1835 std::vector<const ImageSection*> method_sections_; 1836 std::vector<const ImageSection*> runtime_method_sections_; 2026 const ImageSection& class_table_section = header.GetClassTableSection(); in AddImageSpace()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 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() [all …]
|
D | image_test.cc | 75 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F()
|
D | image_writer.h | 293 std::pair<size_t, std::vector<ImageSection>> CreateImageSections() const;
|
/art/runtime/jit/ |
D | jit.cc | 645 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone() 704 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone() 732 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone() 1095 const ImageSection& section = header.GetMethodsSection(); in MapBootImageMethods() 1226 const ImageSection& section = header.GetMethodsSection(); in CreateThreadPool()
|
/art/runtime/gc/collector/ |
D | immune_spaces_test.cc | 114 ImageSection sections[ImageHeader::kSectionCount]; in CreateImageSpace()
|
/art/runtime/gc/space/ |
D | image_space.cc | 714 const ImageSection& image_objects = image_header.GetObjectsSection(); in Init() 775 const ImageSection& new_interns = new_space->GetImageHeader().GetInternedStringsSection(); in RemoveInternTableDuplicates() 781 const ImageSection& old_interns = old_space->GetImageHeader().GetInternedStringsSection(); in RemoveInternTableDuplicates() 1170 const ImageSection& objects_section = image_header->GetObjectsSection(); in RelocateInPlace() 3673 const ImageSection& section = header.GetImageSection(section_type); in DumpSections() 3680 const ImageSection& metadata = GetImageHeader().GetMetadataSection(); in ReleaseMetadata()
|