Home | History | Annotate | Download | only in Breakpoint

Lines Matching refs:wp_sp

34 WatchpointList::Add (const WatchpointSP &wp_sp, bool notify)
37 wp_sp->SetID(++m_next_wp_id);
38 m_watchpoints.push_back(wp_sp);
41 if (wp_sp->GetTarget().EventTypeHasListeners(Target::eBroadcastBitWatchpointChanged))
42 wp_sp->GetTarget().BroadcastEvent (Target::eBroadcastBitWatchpointChanged,
43 new Watchpoint::WatchpointEventData (eWatchpointEventTypeAdded, wp_sp));
45 return wp_sp->GetID();
72 WatchpointSP wp_sp;
79 wp_sp = *pos;
84 return wp_sp;
90 WatchpointSP wp_sp;
97 wp_sp = *pos;
102 return wp_sp;
139 WatchpointSP wp_sp;
143 wp_sp = *pos;
145 return wp_sp;
151 WatchpointSP wp_sp = FindByAddress (addr);
152 if (wp_sp)
154 return wp_sp->GetID();
162 WatchpointSP wp_sp = FindBySpec (spec);
163 if (wp_sp)
165 return wp_sp->GetID();
174 WatchpointSP wp_sp;
179 wp_sp = *pos;
181 return wp_sp;
188 WatchpointSP wp_sp;
193 wp_sp = *pos;
195 return wp_sp;
215 WatchpointSP wp_sp = *pos;
218 if (wp_sp->GetTarget().EventTypeHasListeners(Target::eBroadcastBitWatchpointChanged))
219 wp_sp->GetTarget().BroadcastEvent (Target::eBroadcastBitWatchpointChanged,
220 new Watchpoint::WatchpointEventData (eWatchpointEventTypeRemoved, wp_sp));
243 WatchpointSP wp_sp = FindByID (watch_id);
244 if (wp_sp)
249 return wp_sp->ShouldStop (context);