Home
last modified time | relevance | path

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

/art/runtime/
Dimage.h271 ImageSection& GetImageSection(ImageSections index) { in GetImageSection() function
276 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection() function
282 return GetImageSection(kSectionObjects); in GetObjectsSection()
286 return GetImageSection(ImageHeader::kSectionArtFields); in GetFieldsSection()
290 return GetImageSection(kSectionArtMethods); in GetMethodsSection()
294 return GetImageSection(kSectionRuntimeMethods); in GetRuntimeMethodsSection()
298 return GetImageSection(kSectionImTables); in GetImTablesSection()
302 return GetImageSection(kSectionIMTConflictTables); in GetIMTConflictTablesSection()
306 return GetImageSection(kSectionDexCacheArrays); in GetDexCacheArraysSection()
310 return GetImageSection(kSectionInternedStrings); in GetInternedStringsSection()
[all …]
/art/dex2oat/
Ddex2oat_test.cc2162 EXPECT_GT(header.GetImageSection(ImageHeader::kSectionObjects).Size(), 0u); in TEST_F()
2163 EXPECT_EQ(header.GetImageSection(ImageHeader::kSectionArtMethods).Size(), 0u); in TEST_F()
2164 EXPECT_EQ(header.GetImageSection(ImageHeader::kSectionArtFields).Size(), 0u); in TEST_F()
/art/imgdiag/
Dimgdiag.cc1401 if (image_header.GetImageSection(section).Contains(offset)) { in ComputeDirtyBytes()
1425 os << section << " " << image_header.GetImageSection(section) in ComputeDirtyBytes()
/art/runtime/gc/space/
Dimage_space.cc805 auto& section = image_header->GetImageSection(section_idx); in Init()
2378 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()
/art/compiler/optimizing/
Dcode_generator.cc804 return space->GetImageHeader().GetImageSection(section).Contains(offset); in GetBootImageOffsetImpl()
/art/oatdump/
Doatdump.cc1823 os << "IMAGE SECTION " << section << ": " << image_header_.GetImageSection(section) << "\n\n"; in Dump()
/art/dex2oat/linker/
Dimage_writer.cc851 ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); in Write()