Lines Matching refs:m_breakpoints
23 m_breakpoints(), in BreakpointList()
41 m_breakpoints.push_back(bp_sp); in Add()
56 if (pos != m_breakpoints.end()) in Remove()
59 m_breakpoints.erase(pos); in Remove()
75 bp_collection::iterator pos, end = m_breakpoints.end(); in SetEnabledAll()
76 for (pos = m_breakpoints.begin(); pos != end; ++pos) in SetEnabledAll()
89 bp_collection::iterator pos, end = m_breakpoints.end(); in RemoveAll()
90 for (pos = m_breakpoints.begin(); pos != end; ++pos) in RemoveAll()
100 m_breakpoints.erase (m_breakpoints.begin(), m_breakpoints.end()); in RemoveAll()
123 return std::find_if(m_breakpoints.begin(), m_breakpoints.end(), // Search full range in GetBreakpointIDIterator()
130 return std::find_if(m_breakpoints.begin(), m_breakpoints.end(), // Search full range in GetBreakpointIDConstIterator()
140 if (pos != m_breakpoints.end()) in FindBreakpointByID()
152 if (pos != m_breakpoints.end()) in FindBreakpointByID()
164 s->Printf("BreakpointList with %u Breakpoints:\n", (uint32_t)m_breakpoints.size()); in Dump()
167 bp_collection::const_iterator end = m_breakpoints.end(); in Dump()
168 for (pos = m_breakpoints.begin(); pos != end; ++pos) in Dump()
179 bp_collection::iterator end = m_breakpoints.end(); in GetBreakpointAtIndex()
182 for (pos = m_breakpoints.begin(), curr_i = 0; pos != end; ++pos, ++curr_i) in GetBreakpointAtIndex()
195 bp_collection::const_iterator end = m_breakpoints.end(); in GetBreakpointAtIndex()
198 for (pos = m_breakpoints.begin(), curr_i = 0; pos != end; ++pos, ++curr_i) in GetBreakpointAtIndex()
210 bp_collection::iterator end = m_breakpoints.end(); in UpdateBreakpoints()
212 for (pos = m_breakpoints.begin(); pos != end; ++pos) in UpdateBreakpoints()
221 bp_collection::iterator end = m_breakpoints.end(); in UpdateBreakpointsWhenModuleIsReplaced()
223 for (pos = m_breakpoints.begin(); pos != end; ++pos) in UpdateBreakpointsWhenModuleIsReplaced()
232 bp_collection::iterator end = m_breakpoints.end(); in ClearAllBreakpointSites()
234 for (pos = m_breakpoints.begin(); pos != end; ++pos) in ClearAllBreakpointSites()