Lines Matching defs:SBWatchpoint

1 //===-- SBWatchpoint.cpp --------------------------------*- C++ -*-===//
10 #include "lldb/API/SBWatchpoint.h"
30 SBWatchpoint::SBWatchpoint () :
35 SBWatchpoint::SBWatchpoint (const lldb::WatchpointSP &wp_sp) :
44 log->Printf ("SBWatchpoint::SBWatchpoint (const lldb::WatchpointSP &wp_sp"
49 SBWatchpoint::SBWatchpoint(const SBWatchpoint &rhs) :
54 const SBWatchpoint &
55 SBWatchpoint::operator = (const SBWatchpoint &rhs)
63 SBWatchpoint::~SBWatchpoint ()
68 SBWatchpoint::GetID ()
80 log->Printf ("SBWatchpoint(%p)::GetID () => LLDB_INVALID_WATCH_ID", watchpoint_sp.get());
82 log->Printf ("SBWatchpoint(%p)::GetID () => %u", watchpoint_sp.get(), watch_id);
89 SBWatchpoint::IsValid() const
95 SBWatchpoint::GetError ()
107 SBWatchpoint::GetHardwareIndex ()
122 SBWatchpoint::GetWatchAddress ()
137 SBWatchpoint::GetWatchSize ()
152 SBWatchpoint::SetEnabled (bool enabled)
163 SBWatchpoint::IsEnabled ()
176 SBWatchpoint::GetHitCount ()
188 log->Printf ("SBWatchpoint(%p)::GetHitCount () => %u", watchpoint_sp.get(), count);
194 SBWatchpoint::GetIgnoreCount ()
207 SBWatchpoint::SetIgnoreCount (uint32_t n)
218 SBWatchpoint::GetCondition ()
230 SBWatchpoint::SetCondition (const char *condition)
241 SBWatchpoint::GetDescription (SBStream &description, DescriptionLevel level)
259 SBWatchpoint::Clear ()
265 SBWatchpoint::GetSP () const
271 SBWatchpoint::SetSP (const lldb::WatchpointSP &sp)
277 SBWatchpoint::EventIsWatchpointEvent (const lldb::SBEvent &event)
284 SBWatchpoint::GetWatchpointEventTypeFromEvent (const SBEvent& event)
291 SBWatchpoint
292 SBWatchpoint::GetWatchpointFromEvent (const lldb::SBEvent& event)
294 SBWatchpoint sb_watchpoint;