Home
last modified time | relevance | path

Searched refs:is_synchronous (Results 1 – 10 of 10) sorted by relevance

/external/lldb/source/Breakpoint/
DStoppointCallbackContext.cpp22 is_synchronous (false) in StoppointCallbackContext()
29 is_synchronous(synchronously) in StoppointCallbackContext()
38 is_synchronous = false; in Clear()
DWatchpoint.cpp76 Watchpoint::SetCallback (WatchpointHitCallback callback, void *baton, bool is_synchronous) in SetCallback() argument
80 m_options.SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous); in SetCallback()
88 …SetCallback (WatchpointHitCallback callback, const BatonSP &callback_baton_sp, bool is_synchronous) in SetCallback() argument
90 m_options.SetCallback(callback, callback_baton_sp, is_synchronous); in SetCallback()
DBreakpointLocation.cpp213 bool is_synchronous) in SetCallback() argument
217 GetLocationOptions()->SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous); in SetCallback()
223 bool is_synchronous) in SetCallback() argument
225 GetLocationOptions()->SetCallback (callback, baton_sp, is_synchronous); in SetCallback()
452 context->is_synchronous = true; in ShouldStop()
DBreakpoint.cpp297 Breakpoint::SetCallback (BreakpointHitCallback callback, void *baton, bool is_synchronous) in SetCallback() argument
301 m_options.SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous); in SetCallback()
309 …SetCallback (BreakpointHitCallback callback, const BatonSP &callback_baton_sp, bool is_synchronous) in SetCallback() argument
311 m_options.SetCallback(callback, callback_baton_sp, is_synchronous); in SetCallback()
DWatchpointOptions.cpp129 if (m_callback && context->is_synchronous == IsCallbackSynchronous()) in InvokeCallback()
DBreakpointOptions.cpp145 if (m_callback && context->is_synchronous == IsCallbackSynchronous()) in InvokeCallback()
/external/lldb/include/lldb/Breakpoint/
DBreakpointLocation.h153 bool is_synchronous);
158 bool is_synchronous);
DWatchpoint.h146 bool is_synchronous = false);
151 bool is_synchronous = false);
DBreakpoint.h425 bool is_synchronous = false);
430 bool is_synchronous = false);
DStoppointCallbackContext.h52 … bool is_synchronous; // Is the callback being executed synchronously with the breakpoint, variable