Lines Matching refs:wp_sp
816 WatchpointSP wp_sp; in CreateWatchpoint() local
819 return wp_sp; in CreateWatchpoint()
827 return wp_sp; in CreateWatchpoint()
835 return wp_sp; in CreateWatchpoint()
858 wp_sp = matched_sp; in CreateWatchpoint()
859 wp_sp->SetEnabled(false, notify); in CreateWatchpoint()
867 if (!wp_sp) { in CreateWatchpoint()
868 wp_sp = std::make_shared<Watchpoint>(*this, addr, size, type); in CreateWatchpoint()
869 wp_sp->SetWatchpointType(kind, notify); in CreateWatchpoint()
870 m_watchpoint_list.Add(wp_sp, true); in CreateWatchpoint()
873 error = m_process_sp->EnableWatchpoint(wp_sp.get(), notify); in CreateWatchpoint()
876 wp_sp->GetID()); in CreateWatchpoint()
881 m_watchpoint_list.Remove(wp_sp->GetID(), true); in CreateWatchpoint()
887 wp_sp.reset(); in CreateWatchpoint()
889 m_last_created_watchpoint = wp_sp; in CreateWatchpoint()
890 return wp_sp; in CreateWatchpoint()
1178 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in RemoveAllWatchpoints() local
1179 if (!wp_sp) in RemoveAllWatchpoints()
1182 Status rc = m_process_sp->DisableWatchpoint(wp_sp.get()); in RemoveAllWatchpoints()
1207 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in DisableAllWatchpoints() local
1208 if (!wp_sp) in DisableAllWatchpoints()
1211 Status rc = m_process_sp->DisableWatchpoint(wp_sp.get()); in DisableAllWatchpoints()
1234 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in EnableAllWatchpoints() local
1235 if (!wp_sp) in EnableAllWatchpoints()
1238 Status rc = m_process_sp->EnableWatchpoint(wp_sp.get()); in EnableAllWatchpoints()
1250 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in ClearAllWatchpointHitCounts() local
1251 if (!wp_sp) in ClearAllWatchpointHitCounts()
1254 wp_sp->ResetHitCount(); in ClearAllWatchpointHitCounts()
1264 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in ClearAllWatchpointHistoricValues() local
1265 if (!wp_sp) in ClearAllWatchpointHistoricValues()
1268 wp_sp->ResetHistoricValues(); in ClearAllWatchpointHistoricValues()
1282 for (WatchpointSP wp_sp : m_watchpoint_list.Watchpoints()) { in IgnoreAllWatchpoints() local
1283 if (!wp_sp) in IgnoreAllWatchpoints()
1286 wp_sp->SetIgnoreCount(ignore_count); in IgnoreAllWatchpoints()
1299 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in DisableWatchpointByID() local
1300 if (wp_sp) { in DisableWatchpointByID()
1301 Status rc = m_process_sp->DisableWatchpoint(wp_sp.get()); in DisableWatchpointByID()
1318 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in EnableWatchpointByID() local
1319 if (wp_sp) { in EnableWatchpointByID()
1320 Status rc = m_process_sp->EnableWatchpoint(wp_sp.get()); in EnableWatchpointByID()
1354 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in IgnoreWatchpointByID() local
1355 if (wp_sp) { in IgnoreWatchpointByID()
1356 wp_sp->SetIgnoreCount(ignore_count); in IgnoreWatchpointByID()