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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanRunToAddress.cpp26 m_stop_others(stop_others), m_addresses(), m_break_ids() {
37 m_stop_others(stop_others), m_addresses(), m_break_ids() {
48 m_stop_others(stop_others), m_addresses(addresses), m_break_ids() {
61 m_break_ids.resize(num_addresses);
71 m_break_ids[i] = breakpoint->GetID();
79 size_t num_break_ids = m_break_ids.size();
81 m_thread.CalculateTarget()->RemoveBreakpointByID(m_break_ids[i]);
120 s->Printf(" using breakpoint: %d - ", m_break_ids[i]);
122 m_thread.CalculateTarget()->GetBreakpointByID(m_break_ids[i]).get();
140 size_t num_break_ids = m_break_ids
[all...]
/freebsd-11-stable/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 member in class:lldb_private::ThreadPlanRunToAddress
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp797 size_t GetSize() { return m_break_ids.size(); }
800 if (idx >= m_break_ids.size())
805 lldb::break_id_t bp_id = m_break_ids[idx];
814 for (lldb::break_id_t &break_id : m_break_ids) {
827 m_break_ids.push_back(bkpt->GetID());
838 if (find(m_break_ids.begin(), m_break_ids.end(), bp_id) ==
839 m_break_ids.end())
842 m_break_ids.push_back(bkpt->GetID());
852 m_break_ids
867 std::vector<lldb::break_id_t> m_break_ids; member in class:SBBreakpointListImpl
[all...]

Completed in 109 milliseconds