Lines Matching defs:wp_sp

864   WatchpointSP wp_sp;
867 return wp_sp;
875 return wp_sp;
883 return wp_sp;
919 wp_sp = matched_sp;
920 wp_sp->SetEnabled(false, notify);
928 if (!wp_sp) {
929 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type);
930 wp_sp->SetWatchpointType(kind, notify);
931 m_watchpoint_list.Add(wp_sp, true);
934 error = m_process_sp->EnableWatchpoint(wp_sp, notify);
937 wp_sp->GetID());
942 m_watchpoint_list.Remove(wp_sp->GetID(), true);
943 wp_sp.reset();
945 m_last_created_watchpoint = wp_sp;
946 return wp_sp;
1238 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1239 if (!wp_sp)
1242 Status rc = m_process_sp->DisableWatchpoint(wp_sp);
1267 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1268 if (!wp_sp)
1271 Status rc = m_process_sp->DisableWatchpoint(wp_sp);
1294 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1295 if (!wp_sp)
1298 Status rc = m_process_sp->EnableWatchpoint(wp_sp);
1310 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1311 if (!wp_sp)
1314 wp_sp->ResetHitCount();
1324 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1325 if (!wp_sp)
1328 wp_sp->ResetHistoricValues();
1342 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1343 if (!wp_sp)
1346 wp_sp->SetIgnoreCount(ignore_count);
1359 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
1360 if (wp_sp) {
1361 Status rc = m_process_sp->DisableWatchpoint(wp_sp);
1378 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
1379 if (wp_sp) {
1380 Status rc = m_process_sp->EnableWatchpoint(wp_sp);
1414 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
1415 if (wp_sp) {
1416 wp_sp->SetIgnoreCount(ignore_count);