Lines Matching defs:sect_sp
513 size_t SectionList::AddUniqueSection(const lldb::SectionSP §_sp) {
514 size_t sect_idx = FindSectionIndex(sect_sp.get());
516 sect_idx = AddSection(sect_sp);
522 const lldb::SectionSP §_sp,
527 *sect_iter = sect_sp;
532 .ReplaceSection(sect_id, sect_sp, depth - 1))
551 SectionSP sect_sp;
553 sect_sp = m_sections[idx];
554 return sect_sp;
559 SectionSP sect_sp;
565 sect_iter != end && sect_sp.get() == nullptr; ++sect_iter) {
569 sect_sp = *sect_iter;
571 sect_sp =
577 return sect_sp;
581 SectionSP sect_sp;
586 sect_iter != end && sect_sp.get() == nullptr; ++sect_iter) {
588 sect_sp = *sect_iter;
591 sect_sp = (*sect_iter)->GetChildren().FindSectionByID(sect_id);
595 return sect_sp;
601 SectionSP sect_sp;
605 sect_sp = m_sections[idx];
608 sect_sp = m_sections[idx]->GetChildren().FindSectionByType(
610 if (sect_sp)
614 return sect_sp;
619 SectionSP sect_sp;
623 sect_iter != end && sect_sp.get() == nullptr; ++sect_iter) {
630 sect_sp = sect->GetChildren().FindSectionContainingFileAddress(
633 if (sect_sp.get() == nullptr && !sect->IsFake())
634 sect_sp = *sect_iter;
637 return sect_sp;