Lines Matching defs:target_sp
788 SBBreakpointListImpl(lldb::TargetSP target_sp) {
789 if (target_sp && target_sp->IsValid())
790 m_target_wp = target_sp;
800 TargetSP target_sp = m_target_wp.lock();
801 if (!target_sp)
804 return target_sp->GetBreakpointList().FindBreakpointByID(bp_id);
808 TargetSP target_sp = m_target_wp.lock();
809 if (!target_sp)
814 return target_sp->GetBreakpointList().FindBreakpointByID(break_id);
820 TargetSP target_sp = m_target_wp.lock();
821 if (!target_sp || !bkpt)
823 if (bkpt->GetTargetSP() != target_sp)
830 TargetSP target_sp = m_target_wp.lock();
831 if (!target_sp || !bkpt)
833 if (bkpt->GetTargetSP() != target_sp)
844 TargetSP target_sp = m_target_wp.lock();
845 if (!target_sp)