Lines Matching refs:pos

63     wp_collection::const_iterator pos, end = m_watchpoints.end();
64 for (pos = m_watchpoints.begin(); pos != end; ++pos)
65 (*pos)->DumpWithLevel(s, description_level);
76 wp_collection::const_iterator pos, end = m_watchpoints.end();
77 for (pos = m_watchpoints.begin(); pos != end; ++pos)
78 if ((*pos)->GetLoadAddress() == addr) {
79 wp_sp = *pos;
94 wp_collection::const_iterator pos, end = m_watchpoints.end();
95 for (pos = m_watchpoints.begin(); pos != end; ++pos)
96 if ((*pos)->GetWatchSpec() == spec) {
97 wp_sp = *pos;
141 wp_collection::const_iterator pos = GetIDConstIterator(watch_id);
142 if (pos != m_watchpoints.end())
143 wp_sp = *pos;
177 wp_collection::const_iterator pos = m_watchpoints.begin();
178 std::advance(pos, i);
179 wp_sp = *pos;
191 wp_collection::const_iterator pos = m_watchpoints.begin();
192 std::advance(pos, i);
193 wp_sp = *pos;
202 wp_collection::const_iterator pos, end = m_watchpoints.end();
203 for (pos = m_watchpoints.begin(); pos != end; ++pos)
204 IDs.push_back((*pos)->GetID());
212 wp_collection::iterator pos = GetIDIterator(watch_id);
213 if (pos != m_watchpoints.end())
215 WatchpointSP wp_sp = *pos;
222 m_watchpoints.erase(pos);
233 wp_collection::const_iterator pos, end = m_watchpoints.end();
234 for (pos = m_watchpoints.begin(); pos != end; ++pos)
235 hit_count += (*pos)->GetHitCount();
260 wp_collection::iterator pos, end = m_watchpoints.end();
262 for (pos = m_watchpoints.begin(); pos != end; ++pos)
265 (*pos)->Dump(s);
274 wp_collection::iterator pos, end = m_watchpoints.end();
275 for (pos = m_watchpoints.begin(); pos != end; ++pos)
276 (*pos)->SetEnabled (enabled);
287 wp_collection::iterator pos, end = m_watchpoints.end();
288 for (pos = m_watchpoints.begin(); pos != end; ++pos)
290 if ((*pos)->GetTarget().EventTypeHasListeners(Target::eBroadcastBitBreakpointChanged))
292 (*pos)->GetTarget().BroadcastEvent (Target::eBroadcastBitWatchpointChanged,
294 *pos));