Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
405 should_stop = InvokeCallback(context); in ShouldStop()
H A DWatchpoint.cpp278 bool Watchpoint::InvokeCallback(StoppointCallbackContext *context) { in InvokeCallback() function in Watchpoint
279 return m_options.InvokeCallback(context, GetID()); in InvokeCallback()
H A DWatchpointOptions.cpp89 bool WatchpointOptions::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback() function in WatchpointOptions
H A DBreakpoint.cpp433 bool Breakpoint::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback() function in Breakpoint
435 return m_options.InvokeCallback(context, GetID(), bp_loc_id); in InvokeCallback()
H A DBreakpointOptions.cpp437 bool BreakpointOptions::InvokeCallback(StoppointCallbackContext *context, in InvokeCallback() function in BreakpointOptions
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h116 bool InvokeCallback(StoppointCallbackContext *context,
H A DBreakpointLocation.h232 bool InvokeCallback(StoppointCallbackContext *context);
H A DWatchpoint.h132 bool InvokeCallback(StoppointCallbackContext *context);
H A DBreakpointOptions.h225 bool InvokeCallback(StoppointCallbackContext *context,
H A DBreakpoint.h512 bool InvokeCallback(StoppointCallbackContext *context,
/llvm-project-15.0.7/lldb/source/Target/
H A DStopInfo.cpp539 callback_says_stop = bp_loc_sp->InvokeCallback(&context); in PerformAction()
908 bool stop_requested = wp_sp->InvokeCallback(&context); in PerformAction()