Lines Matching refs:watch_id
901 Target::DisableWatchpointByID (lldb::watch_id_t watch_id) in DisableWatchpointByID() argument
905 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in DisableWatchpointByID()
910 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in DisableWatchpointByID()
924 Target::EnableWatchpointByID (lldb::watch_id_t watch_id) in EnableWatchpointByID() argument
928 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in EnableWatchpointByID()
933 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in EnableWatchpointByID()
947 Target::RemoveWatchpointByID (lldb::watch_id_t watch_id) in RemoveWatchpointByID() argument
951 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in RemoveWatchpointByID()
953 WatchpointSP watch_to_remove_sp = m_watchpoint_list.FindByID(watch_id); in RemoveWatchpointByID()
957 if (DisableWatchpointByID (watch_id)) in RemoveWatchpointByID()
959 m_watchpoint_list.Remove(watch_id, true); in RemoveWatchpointByID()
967 Target::IgnoreWatchpointByID (lldb::watch_id_t watch_id, uint32_t ignore_count) in IgnoreWatchpointByID() argument
971 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in IgnoreWatchpointByID()
976 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in IgnoreWatchpointByID()