Home
last modified time | relevance | path

Searched refs:GetImageSection (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dimage.h279 ImageSection& GetImageSection(ImageSections index) { in GetImageSection() function
284 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection() function
290 return GetImageSection(kSectionObjects); in GetObjectsSection()
294 return GetImageSection(ImageHeader::kSectionArtFields); in GetFieldsSection()
298 return GetImageSection(kSectionArtMethods); in GetMethodsSection()
302 return GetImageSection(kSectionRuntimeMethods); in GetRuntimeMethodsSection()
306 return GetImageSection(kSectionImTables); in GetImTablesSection()
310 return GetImageSection(kSectionIMTConflictTables); in GetIMTConflictTablesSection()
314 return GetImageSection(kSectionInternedStrings); in GetInternedStringsSection()
318 return GetImageSection(kSectionClassTable); in GetClassTableSection()
[all …]
/art/dex2oat/
Ddex2oat_test.cc1914 EXPECT_GT(header.GetImageSection(ImageHeader::kSectionObjects).Size(), 0u); in TEST_F()
1915 EXPECT_EQ(header.GetImageSection(ImageHeader::kSectionArtMethods).Size(), 0u); in TEST_F()
1916 EXPECT_EQ(header.GetImageSection(ImageHeader::kSectionArtFields).Size(), 0u); in TEST_F()
/art/imgdiag/
Dimgdiag.cc1408 if (image_header.GetImageSection(section).Contains(offset)) { in ComputeDirtyBytes()
1432 os << section << " " << image_header.GetImageSection(section) in ComputeDirtyBytes()
/art/oatdump/
Doatdump.cc1722 os << "IMAGE SECTION " << section << ": " << image_header_.GetImageSection(section) << "\n\n"; in Dump()
1877 stats_.art_file_stats[name].AddBytes(image_header_.GetImageSection(index).Size()); in Dump()
/art/runtime/gc/space/
Dimage_space.cc655 auto& section = image_header.GetImageSection(section_idx); in Init()
3673 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()
/art/compiler/optimizing/
Dcode_generator.cc903 return space->GetImageHeader().GetImageSection(section).Contains(offset); in GetBootImageOffsetImpl()
/art/dex2oat/linker/
Dimage_writer.cc533 ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); in Write()