Home
last modified time | relevance | path

Searched refs:InvokeCallback (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp190 bool BreakpointLocation::InvokeCallback(StoppointCallbackContext *context) { in InvokeCallback() function in BreakpointLocation
192 return m_options_up->InvokeCallback(context, m_owner.GetID(), GetID()); in InvokeCallback()
194 return m_owner.InvokeCallback(context, GetID()); in InvokeCallback()
406 should_stop = InvokeCallback(context); in ShouldStop()
H A DWatchpointOptions.cpp89 bool WatchpointOptions::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback() function in WatchpointOptions
H A DWatchpoint.cpp433 bool Watchpoint::InvokeCallback(StoppointCallbackContext *context) { in InvokeCallback() function in Watchpoint
434 return m_options.InvokeCallback(context, GetID()); in InvokeCallback()
H A DBreakpoint.cpp431 bool Breakpoint::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback() function in Breakpoint
433 return m_options.InvokeCallback(context, GetID(), bp_loc_id); in InvokeCallback()
H A DBreakpointOptions.cpp436 bool BreakpointOptions::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback() function in BreakpointOptions
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h110 bool InvokeCallback(StoppointCallbackContext *context,
H A DBreakpointLocation.h235 bool InvokeCallback(StoppointCallbackContext *context);
H A DWatchpoint.h166 bool InvokeCallback(StoppointCallbackContext *context);
H A DBreakpointOptions.h225 bool InvokeCallback(StoppointCallbackContext *context,
H A DBreakpoint.h517 bool InvokeCallback(StoppointCallbackContext *context,
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp535 callback_says_stop = bp_loc_sp->InvokeCallback(&context); in PerformAction()
973 bool stop_requested = wp_sp->InvokeCallback(&context); in PerformAction()