Home
last modified time | relevance | path

Searched refs:m_break_ids (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanRunToAddress.cpp27 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
38 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
49 m_stop_others(stop_others), m_addresses(addresses), m_break_ids() { in ThreadPlanRunToAddress()
62 m_break_ids.resize(num_addresses); in SetInitialBreakpoints()
71 m_break_ids[i] = breakpoint->GetID(); in SetInitialBreakpoints()
79 size_t num_break_ids = m_break_ids.size(); in ~ThreadPlanRunToAddress()
81 GetTarget().RemoveBreakpointByID(m_break_ids[i]); in ~ThreadPlanRunToAddress()
120 s->Printf(" using breakpoint: %d - ", m_break_ids[i]); in GetDescription()
122 GetTarget().GetBreakpointByID(m_break_ids[i]).get(); in GetDescription()
140 size_t num_break_ids = m_break_ids.size(); in ValidatePlan()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp795 size_t GetSize() { return m_break_ids.size(); } in GetSize()
798 if (idx >= m_break_ids.size()) in GetBreakpointAtIndex()
803 lldb::break_id_t bp_id = m_break_ids[idx]; in GetBreakpointAtIndex()
812 for (lldb::break_id_t &break_id : m_break_ids) { in FindBreakpointByID()
825 m_break_ids.push_back(bkpt->GetID()); in Append()
836 if (!llvm::is_contained(m_break_ids, bp_id)) in AppendIfUnique()
839 m_break_ids.push_back(bkpt->GetID()); in AppendIfUnique()
849 m_break_ids.push_back(id); in AppendByID()
853 void Clear() { m_break_ids.clear(); } in Clear()
856 for (lldb::break_id_t id : m_break_ids) { in CopyToBreakpointIDList()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanRunToAddress.h59 std::vector<lldb::break_id_t> m_break_ids; // This is the breakpoint we are variable