Lines Matching refs:m_break_ids
26 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()
141 if (m_break_ids[i] == LLDB_INVALID_BREAK_ID) { in ValidatePlan()
176 size_t num_break_ids = m_break_ids.size(); in MischiefManaged()
179 if (m_break_ids[i] != LLDB_INVALID_BREAK_ID) { in MischiefManaged()
180 GetTarget().RemoveBreakpointByID(m_break_ids[i]); in MischiefManaged()
181 m_break_ids[i] = LLDB_INVALID_BREAK_ID; in MischiefManaged()