Lines Matching defs:wp_sp
949 WatchpointSP wp_sp;
952 return wp_sp;
962 return wp_sp;
971 return wp_sp;
1007 wp_sp = matched_sp;
1008 wp_sp->SetEnabled(false, notify);
1016 if (!wp_sp) {
1017 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type);
1018 wp_sp->SetWatchpointType(kind, notify);
1019 m_watchpoint_list.Add(wp_sp, true);
1022 error = m_process_sp->EnableWatchpoint(wp_sp, notify);
1025 wp_sp->GetID());
1030 m_watchpoint_list.Remove(wp_sp->GetID(), true);
1031 wp_sp.reset();
1033 m_last_created_watchpoint = wp_sp;
1034 return wp_sp;
1326 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1327 if (!wp_sp)
1330 Status rc = m_process_sp->DisableWatchpoint(wp_sp);
1355 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1356 if (!wp_sp)
1359 Status rc = m_process_sp->DisableWatchpoint(wp_sp);
1382 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1383 if (!wp_sp)
1386 Status rc = m_process_sp->EnableWatchpoint(wp_sp);
1398 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1399 if (!wp_sp)
1402 wp_sp->ResetHitCount();
1412 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1413 if (!wp_sp)
1416 wp_sp->ResetHistoricValues();
1430 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) {
1431 if (!wp_sp)
1434 wp_sp->SetIgnoreCount(ignore_count);
1447 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
1448 if (wp_sp) {
1449 Status rc = m_process_sp->DisableWatchpoint(wp_sp);
1466 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
1467 if (wp_sp) {
1468 Status rc = m_process_sp->EnableWatchpoint(wp_sp);
1502 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id);
1503 if (wp_sp) {
1504 wp_sp->SetIgnoreCount(ignore_count);