Lines Matching refs:wp_sp

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