Home
last modified time | relevance | path

Searched refs:class_table_section (Results 1 – 4 of 4) sorted by relevance

/art/dex2oat/linker/
Dimage_writer.cc2734 const ImageSection& class_table_section = in CreateImageSections() local
2743 cur_pos = RoundUp(class_table_section.End(), sizeof(uint32_t)); in CreateImageSections()
3065 const ImageSection& class_table_section = image_header->GetClassTableSection(); in CopyAndFixupNativeData() local
3067 image_info.image_.Begin() + class_table_section.Offset(); in CopyAndFixupNativeData()
/art/runtime/
Druntime_image.cc200 auto class_table_section = header_.GetImageSection(ImageHeader::kSectionClassTable); in FillData() local
201 class_table_.WriteToMemory(compute_dest(class_table_section)); in FillData()
Dclass_linker.cc2343 const ImageSection& class_table_section = header.GetClassTableSection(); in AddImageSpace() local
2344 const bool added_class_table = class_table_section.Size() > 0u; in AddImageSpace()
2348 temp_set = ClassTable::ClassSet(space->Begin() + class_table_section.Offset(), in AddImageSpace()
11108 const ImageSection& class_table_section = in GetHoldingClassLoaderOfCopiedMethod() local
11110 CHECK_NE(class_table_section.Size(), 0u); in GetHoldingClassLoaderOfCopiedMethod()
11111 const uint8_t* ptr = image_space->Begin() + class_table_section.Offset(); in GetHoldingClassLoaderOfCopiedMethod()
/art/runtime/gc/space/
Dimage_space.cc1321 const auto& class_table_section = image_header->GetClassTableSection(); in RelocateInPlace() local
1322 if (class_table_section.Size() > 0u) { in RelocateInPlace()
1326 const uint8_t* data = target_base + class_table_section.Offset(); in RelocateInPlace()