Home | History | Annotate | Download | only in Target

Lines Matching refs:wp_sp

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