Lines Matching refs:sect
51 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true); in Initialize() local
52 if (sect.get()) { in Initialize()
54 new DWARFCallFrameInfo(m_object_file, sect, DWARFCallFrameInfo::EH)); in Initialize()
57 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true); in Initialize()
58 if (sect) { in Initialize()
60 new DWARFCallFrameInfo(m_object_file, sect, DWARFCallFrameInfo::DWARF)); in Initialize()
63 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true); in Initialize()
64 if (sect) { in Initialize()
65 m_compact_unwind_up.reset(new CompactUnwindInfo(m_object_file, sect)); in Initialize()
68 sect = sl->FindSectionByType(eSectionTypeARMexidx, true); in Initialize()
69 if (sect) { in Initialize()
72 m_arm_unwind_up.reset(new ArmUnwindInfo(m_object_file, sect, sect_extab)); in Initialize()