Lines Matching refs:wp_sp

561     WatchpointSP wp_sp;  in CreateWatchpoint()  local
565 return wp_sp; in CreateWatchpoint()
574 return wp_sp; in CreateWatchpoint()
599 wp_sp = matched_sp; in CreateWatchpoint()
600 wp_sp->SetEnabled(false, notify); in CreateWatchpoint()
610 if (!wp_sp) in CreateWatchpoint()
612 wp_sp.reset(new Watchpoint(*this, addr, size, type)); in CreateWatchpoint()
613 wp_sp->SetWatchpointType(kind, notify); in CreateWatchpoint()
614 m_watchpoint_list.Add (wp_sp, true); in CreateWatchpoint()
617 error = m_process_sp->EnableWatchpoint(wp_sp.get(), notify); in CreateWatchpoint()
622 wp_sp->GetID()); in CreateWatchpoint()
628 m_watchpoint_list.Remove (wp_sp->GetID(), true); in CreateWatchpoint()
635 wp_sp.reset(); in CreateWatchpoint()
638 m_last_created_watchpoint = wp_sp; in CreateWatchpoint()
639 return wp_sp; in CreateWatchpoint()
776 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); in RemoveAllWatchpoints() local
777 if (!wp_sp) in RemoveAllWatchpoints()
780 Error rc = m_process_sp->DisableWatchpoint(wp_sp.get()); in RemoveAllWatchpoints()
811 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); in DisableAllWatchpoints() local
812 if (!wp_sp) in DisableAllWatchpoints()
815 Error rc = m_process_sp->DisableWatchpoint(wp_sp.get()); in DisableAllWatchpoints()
844 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); in EnableAllWatchpoints() local
845 if (!wp_sp) in EnableAllWatchpoints()
848 Error rc = m_process_sp->EnableWatchpoint(wp_sp.get()); in EnableAllWatchpoints()
866 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); in ClearAllWatchpointHitCounts() local
867 if (!wp_sp) in ClearAllWatchpointHitCounts()
870 wp_sp->ResetHitCount(); in ClearAllWatchpointHitCounts()
890 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); in IgnoreAllWatchpoints() local
891 if (!wp_sp) in IgnoreAllWatchpoints()
894 wp_sp->SetIgnoreCount(ignore_count); in IgnoreAllWatchpoints()
910 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in DisableWatchpointByID() local
911 if (wp_sp) in DisableWatchpointByID()
913 Error rc = m_process_sp->DisableWatchpoint(wp_sp.get()); in DisableWatchpointByID()
933 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in EnableWatchpointByID() local
934 if (wp_sp) in EnableWatchpointByID()
936 Error rc = m_process_sp->EnableWatchpoint(wp_sp.get()); in EnableWatchpointByID()
976 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in IgnoreWatchpointByID() local
977 if (wp_sp) in IgnoreWatchpointByID()
979 wp_sp->SetIgnoreCount(ignore_count); in IgnoreWatchpointByID()