Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Target/
DThreadPlanRunToAddress.cpp26 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
37 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
48 m_stop_others(stop_others), m_addresses(addresses), m_break_ids() { in ThreadPlanRunToAddress()
61 m_break_ids.resize(num_addresses); in SetInitialBreakpoints()
70 m_break_ids[i] = breakpoint->GetID(); in SetInitialBreakpoints()
78 size_t num_break_ids = m_break_ids.size(); in ~ThreadPlanRunToAddress()
80 GetTarget().RemoveBreakpointByID(m_break_ids[i]); in ~ThreadPlanRunToAddress()
119 s->Printf(" using breakpoint: %d - ", m_break_ids[i]); in GetDescription()
121 GetTarget().GetBreakpointByID(m_break_ids[i]).get(); in GetDescription()
139 size_t num_break_ids = m_break_ids.size(); in ValidatePlan()
[all …]
/external/llvm-project/lldb/source/API/
DSBBreakpoint.cpp831 size_t GetSize() { return m_break_ids.size(); } in GetSize()
834 if (idx >= m_break_ids.size()) in GetBreakpointAtIndex()
839 lldb::break_id_t bp_id = m_break_ids[idx]; in GetBreakpointAtIndex()
848 for (lldb::break_id_t &break_id : m_break_ids) { in FindBreakpointByID()
861 m_break_ids.push_back(bkpt->GetID()); in Append()
872 if (find(m_break_ids.begin(), m_break_ids.end(), bp_id) == in AppendIfUnique()
873 m_break_ids.end()) in AppendIfUnique()
876 m_break_ids.push_back(bkpt->GetID()); in AppendIfUnique()
886 m_break_ids.push_back(id); in AppendByID()
890 void Clear() { m_break_ids.clear(); } in Clear()
[all …]
/external/llvm-project/lldb/include/lldb/Target/
DThreadPlanRunToAddress.h59 std::vector<lldb::break_id_t> m_break_ids; // This is the breakpoint we are variable