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, 278 ImageSection& GetImageSection(ImageSections index) { in GetImageSection() 283 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection() 288 const ImageSection& GetObjectsSection() const { in GetObjectsSection() 292 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() 151 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<() 159 const ImageSection& objects = GetObjectsSection(); in VisitObjects()
|
D | intern_table-inl.h | 34 const ImageSection& section = header.GetInternedStringsSection(); in AddImageStringsToTable()
|
D | stack.cc | 747 const ImageSection& methods = header.GetMethodsSection(); in ValidateFrame() 748 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection(); in ValidateFrame()
|
D | class_linker.cc | 1490 const ImageSection& objects_section = image_header.GetObjectsSection(); in CountInternedStringReferences() 1524 const ImageSection& sro_section = in VisitInternedStringReferences() 1614 const ImageSection& section = space->GetImageHeader().GetInternedStringsSection(); in VerifyInternedStringReferences() 2024 std::vector<const ImageSection*> method_sections_; 2025 std::vector<const ImageSection*> runtime_method_sections_; 2225 const ImageSection& class_table_section = header.GetClassTableSection(); in AddImageSpace()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 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() 2551 … 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 | 298 std::pair<size_t, std::vector<ImageSection>> CreateImageSections() const;
|
/art/runtime/jit/ |
D | jit.cc | 639 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone() 698 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone() 726 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone() 1077 const ImageSection& section = header.GetMethodsSection(); in MapBootImageMethods() 1242 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 | 950 const ImageSection& image_objects = image_header.GetObjectsSection(); in Init() 1011 const ImageSection& new_interns = new_space->GetImageHeader().GetInternedStringsSection(); in RemoveInternTableDuplicates() 1017 const ImageSection& old_interns = old_space->GetImageHeader().GetInternedStringsSection(); in RemoveInternTableDuplicates() 1394 const ImageSection& objects_section = image_header->GetObjectsSection(); in RelocateInPlace() 4161 const ImageSection& section = header.GetImageSection(section_type); in DumpSections() 4178 const ImageSection& metadata = GetImageHeader().GetMetadataSection(); in ReleaseMetadata()
|