Home | History | Annotate | Download | only in Breakpoint

Lines Matching defs:WatchpointOptions

1 //===-- WatchpointOptions.cpp -----------------------------------*- C++ -*-===//
10 #include "lldb/Breakpoint/WatchpointOptions.h"
29 WatchpointOptions::NullCallback (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id)
35 // WatchpointOptions constructor
37 WatchpointOptions::WatchpointOptions() :
38 m_callback (WatchpointOptions::NullCallback),
46 // WatchpointOptions copy constructor
48 WatchpointOptions::WatchpointOptions(const WatchpointOptions& rhs) :
59 // WatchpointOptions assignment operator
61 const WatchpointOptions&
62 WatchpointOptions::operator=(const WatchpointOptions& rhs)
72 WatchpointOptions *
73 WatchpointOptions::CopyOptionsNoCallback (WatchpointOptions &orig)
80 WatchpointOptions *ret_val = new WatchpointOptions(orig);
90 WatchpointOptions::~WatchpointOptions()
98 WatchpointOptions::SetCallback (WatchpointHitCallback callback, const BatonSP &callback_baton_sp, bool callback_is_synchronous)
106 WatchpointOptions::ClearCallback ()
108 m_callback = WatchpointOptions::NullCallback;
114 WatchpointOptions::GetBaton ()
120 WatchpointOptions::GetBaton () const
126 WatchpointOptions::InvokeCallback (StoppointCallbackContext *context,
140 WatchpointOptions::HasCallback ()
142 return m_callback != WatchpointOptions::NullCallback;
146 WatchpointOptions::GetThreadSpecNoCreate () const
152 WatchpointOptions::GetThreadSpec ()
161 WatchpointOptions::SetThreadID (lldb::tid_t thread_id)
167 WatchpointOptions::GetCallbackDescription (Stream *s, lldb::DescriptionLevel level) const
176 WatchpointOptions::GetDescription (Stream *s, lldb::DescriptionLevel level) const
211 WatchpointOptions::CommandBaton::GetDescription (Stream *s, lldb::DescriptionLevel level) const