Lines Matching refs:target_sp
824 SBBreakpointListImpl(lldb::TargetSP target_sp) : m_target_wp() { in SBBreakpointListImpl() argument
825 if (target_sp && target_sp->IsValid()) in SBBreakpointListImpl()
826 m_target_wp = target_sp; in SBBreakpointListImpl()
836 TargetSP target_sp = m_target_wp.lock(); in GetBreakpointAtIndex() local
837 if (!target_sp) in GetBreakpointAtIndex()
840 return target_sp->GetBreakpointList().FindBreakpointByID(bp_id); in GetBreakpointAtIndex()
844 TargetSP target_sp = m_target_wp.lock(); in FindBreakpointByID() local
845 if (!target_sp) in FindBreakpointByID()
850 return target_sp->GetBreakpointList().FindBreakpointByID(break_id); in FindBreakpointByID()
856 TargetSP target_sp = m_target_wp.lock(); in Append() local
857 if (!target_sp || !bkpt) in Append()
859 if (bkpt->GetTargetSP() != target_sp) in Append()
866 TargetSP target_sp = m_target_wp.lock(); in AppendIfUnique() local
867 if (!target_sp || !bkpt) in AppendIfUnique()
869 if (bkpt->GetTargetSP() != target_sp) in AppendIfUnique()
881 TargetSP target_sp = m_target_wp.lock(); in AppendByID() local
882 if (!target_sp) in AppendByID()