Home
last modified time | relevance | path

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

/art/runtime/
Dimage.h287 ImageSection& GetImageSection(ImageSections index) { in GetImageSection() function
292 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection() function
298 return GetImageSection(kSectionObjects); in GetObjectsSection()
302 return GetImageSection(ImageHeader::kSectionArtFields); in GetFieldsSection()
306 return GetImageSection(kSectionArtMethods); in GetMethodsSection()
310 return GetImageSection(kSectionRuntimeMethods); in GetRuntimeMethodsSection()
314 return GetImageSection(kSectionImTables); in GetImTablesSection()
318 return GetImageSection(kSectionIMTConflictTables); in GetIMTConflictTablesSection()
322 return GetImageSection(kSectionInternedStrings); in GetInternedStringsSection()
326 return GetImageSection(kSectionClassTable); in GetClassTableSection()
[all …]
Druntime_image.cc181 auto objects_section = header_.GetImageSection(ImageHeader::kSectionObjects); in FillData()
184 auto fields_section = header_.GetImageSection(ImageHeader::kSectionArtFields); in FillData()
187 auto methods_section = header_.GetImageSection(ImageHeader::kSectionArtMethods); in FillData()
190 auto im_tables_section = header_.GetImageSection(ImageHeader::kSectionImTables); in FillData()
193 auto intern_section = header_.GetImageSection(ImageHeader::kSectionInternedStrings); in FillData()
196 auto class_table_section = header_.GetImageSection(ImageHeader::kSectionClassTable); in FillData()
200 header_.GetImageSection(ImageHeader::kSectionStringReferenceOffsets); in FillData()
205 auto dex_cache_section = header_.GetImageSection(ImageHeader::kSectionDexCacheArrays); in FillData()
208 auto metadata_section = header_.GetImageSection(ImageHeader::kSectionMetadata); in FillData()
Dimage.cc403 ImageSection& bitmap_section = GetImageSection(ImageHeader::kSectionImageBitmap); in WriteData()
/art/dex2oat/
Ddex2oat_test.cc1954 EXPECT_GT(header.GetImageSection(ImageHeader::kSectionObjects).Size(), 0u); in TEST_F()
1955 EXPECT_EQ(header.GetImageSection(ImageHeader::kSectionArtMethods).Size(), 0u); in TEST_F()
1956 EXPECT_EQ(header.GetImageSection(ImageHeader::kSectionArtFields).Size(), 0u); in TEST_F()
/art/imgdiag/
Dimgdiag.cc1326 if (image_header.GetImageSection(section).Contains(offset)) { in ComputeDirtyBytes()
1356 os << section << " " << image_header.GetImageSection(section) in PrintMappingData()
/art/oatdump/
Doatdump.cc1784 os << "IMAGE SECTION " << section << ": " << image_header_.GetImageSection(section) << "\n\n"; in Dump()
1939 stats_.art_file_stats[name].AddBytes(image_header_.GetImageSection(index).Size()); in Dump()
/art/runtime/gc/space/
Dimage_space.cc725 auto& section = image_header.GetImageSection(section_idx); in Init()
3772 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()
/art/compiler/optimizing/
Dcode_generator.cc913 return space->GetImageHeader().GetImageSection(section).Contains(offset); in GetBootImageOffsetImpl()