Lines Matching refs:sect
58 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true); in Initialize() local
59 if (sect.get()) { in Initialize()
61 *object_file, sect, DWARFCallFrameInfo::EH); in Initialize()
64 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true); in Initialize()
65 if (sect) { in Initialize()
67 *object_file, sect, DWARFCallFrameInfo::DWARF); in Initialize()
70 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true); in Initialize()
71 if (sect) { in Initialize()
73 std::make_unique<CompactUnwindInfo>(*object_file, sect); in Initialize()
76 sect = sl->FindSectionByType(eSectionTypeARMexidx, true); in Initialize()
77 if (sect) { in Initialize()
81 std::make_unique<ArmUnwindInfo>(*object_file, sect, sect_extab); in Initialize()