Lines Matching refs:WatchpointOptions
23 bool WatchpointOptions::NullCallback(void *baton, in NullCallback()
32 WatchpointOptions::WatchpointOptions() in WatchpointOptions() function in WatchpointOptions
33 : m_callback(WatchpointOptions::NullCallback), m_callback_baton_sp(), in WatchpointOptions()
39 WatchpointOptions::WatchpointOptions(const WatchpointOptions &rhs) in WatchpointOptions() function in WatchpointOptions
50 const WatchpointOptions &WatchpointOptions::
51 operator=(const WatchpointOptions &rhs) { in operator =()
60 WatchpointOptions *
61 WatchpointOptions::CopyOptionsNoCallback(WatchpointOptions &orig) { in CopyOptionsNoCallback()
67 WatchpointOptions *ret_val = new WatchpointOptions(orig); in CopyOptionsNoCallback()
77 WatchpointOptions::~WatchpointOptions() = default;
82 void WatchpointOptions::SetCallback(WatchpointHitCallback callback, in SetCallback()
90 void WatchpointOptions::ClearCallback() { in ClearCallback()
91 m_callback = WatchpointOptions::NullCallback; in ClearCallback()
96 Baton *WatchpointOptions::GetBaton() { return m_callback_baton_sp.get(); } in GetBaton()
98 const Baton *WatchpointOptions::GetBaton() const { in GetBaton()
102 bool WatchpointOptions::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback()
112 bool WatchpointOptions::HasCallback() { in HasCallback()
113 return m_callback != WatchpointOptions::NullCallback; in HasCallback()
116 const ThreadSpec *WatchpointOptions::GetThreadSpecNoCreate() const { in GetThreadSpecNoCreate()
120 ThreadSpec *WatchpointOptions::GetThreadSpec() { in GetThreadSpec()
127 void WatchpointOptions::SetThreadID(lldb::tid_t thread_id) { in SetThreadID()
131 void WatchpointOptions::GetCallbackDescription( in GetCallbackDescription()
139 void WatchpointOptions::GetDescription(Stream *s, in GetDescription()
169 void WatchpointOptions::CommandBaton::GetDescription( in GetDescription()