Lines Matching refs:WatchpointOptions
22 bool WatchpointOptions::NullCallback(void *baton, in NullCallback()
29 WatchpointOptions::WatchpointOptions() in WatchpointOptions() function in WatchpointOptions
30 : m_callback(WatchpointOptions::NullCallback) {} in WatchpointOptions()
33 WatchpointOptions::WatchpointOptions(const WatchpointOptions &rhs) in WatchpointOptions() function in WatchpointOptions
41 const WatchpointOptions &WatchpointOptions::
42 operator=(const WatchpointOptions &rhs) { in operator =()
51 WatchpointOptions *
52 WatchpointOptions::CopyOptionsNoCallback(WatchpointOptions &orig) { in CopyOptionsNoCallback()
58 WatchpointOptions *ret_val = new WatchpointOptions(orig); in CopyOptionsNoCallback()
66 WatchpointOptions::~WatchpointOptions() = default;
69 void WatchpointOptions::SetCallback(WatchpointHitCallback callback, in SetCallback()
77 void WatchpointOptions::ClearCallback() { in ClearCallback()
78 m_callback = WatchpointOptions::NullCallback; in ClearCallback()
83 Baton *WatchpointOptions::GetBaton() { return m_callback_baton_sp.get(); } in GetBaton()
85 const Baton *WatchpointOptions::GetBaton() const { in GetBaton()
89 bool WatchpointOptions::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback()
99 bool WatchpointOptions::HasCallback() { in HasCallback()
100 return m_callback != WatchpointOptions::NullCallback; in HasCallback()
103 const ThreadSpec *WatchpointOptions::GetThreadSpecNoCreate() const { in GetThreadSpecNoCreate()
107 ThreadSpec *WatchpointOptions::GetThreadSpec() { in GetThreadSpec()
114 void WatchpointOptions::SetThreadID(lldb::tid_t thread_id) { in SetThreadID()
118 void WatchpointOptions::GetCallbackDescription( in GetCallbackDescription()
127 void WatchpointOptions::GetDescription(Stream *s, in GetDescription()
157 void WatchpointOptions::CommandBaton::GetDescription( in GetDescription()