Home
last modified time | relevance | path

Searched refs:SetCallback (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp69 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback() function in Watchpoint
73 m_options.SetCallback(callback, std::make_shared<UntypedBaton>(baton), in SetCallback()
81 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback() function in Watchpoint
84 m_options.SetCallback(callback, callback_baton_sp, is_synchronous); in SetCallback()
123 bp_sp->SetCallback(VariableWatchpointDisabler, baton_sp); in SetupVariableWatchpointDisabler()
H A DWatchpointOptions.cpp60 orig.SetCallback(orig_callback, orig_callback_baton_sp, orig_is_sync); in CopyOptionsNoCallback()
69 void WatchpointOptions::SetCallback(WatchpointHitCallback callback, in SetCallback() function in WatchpointOptions
H A DBreakpointLocation.cpp204 void BreakpointLocation::SetCallback(BreakpointHitCallback callback, in SetCallback() function in BreakpointLocation
208 GetLocationOptions().SetCallback( in SetCallback()
213 void BreakpointLocation::SetCallback(BreakpointHitCallback callback, in SetCallback() function in BreakpointLocation
216 GetLocationOptions().SetCallback(callback, baton_sp, is_synchronous); in SetCallback()
H A DBreakpointOptions.cpp391 void BreakpointOptions::SetCallback(BreakpointHitCallback callback, in SetCallback() function in BreakpointOptions
411 void BreakpointOptions::SetCallback( in SetCallback() function in BreakpointOptions
603 SetCallback(BreakpointOptions::BreakpointOptionsCallbackFunction, baton_sp); in SetCommandDataCallback()
H A DBreakpoint.cpp411 void Breakpoint::SetCallback(BreakpointHitCallback callback, void *baton, in SetCallback() function in Breakpoint
415 m_options.SetCallback(callback, std::make_shared<UntypedBaton>(baton), in SetCallback()
423 void Breakpoint::SetCallback(BreakpointHitCallback callback, in SetCallback() function in Breakpoint
426 m_options.SetCallback(callback, callback_baton_sp, is_synchronous); in SetCallback()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h118 void SetCallback(BreakpointHitCallback callback,
121 void SetCallback(BreakpointHitCallback callback, void *baton,
H A DWatchpoint.h150 void SetCallback(WatchpointHitCallback callback, void *callback_baton,
153 void SetCallback(WatchpointHitCallback callback,
H A DBreakpointOptions.h184 void SetCallback(BreakpointHitCallback callback,
187 void SetCallback(BreakpointHitCallback callback,
H A DBreakpoint.h388 void SetCallback(BreakpointHitCallback callback, void *baton,
391 void SetCallback(BreakpointHitCallback callback,
H A DWatchpointOptions.h88 void SetCallback(WatchpointHitCallback callback,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/
H A DInstrumentationRuntimeASanLibsanitizers.cpp102 breakpoint->SetCallback( in Activate()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp95 breakpoint->SetCallback(InstrumentationRuntimeASan::NotifyBreakpointHit, this, in Activate()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpointName.h85 void SetCallback(SBBreakpointHitCallback callback, void *baton);
H A DSBBreakpointLocation.h66 void SetCallback(SBBreakpointHitCallback callback, void *baton);
H A DSBBreakpoint.h101 void SetCallback(SBBreakpointHitCallback callback, void *baton);
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp202 void SBBreakpointLocation::SetCallback(SBBreakpointHitCallback callback, in SetCallback() function in SBBreakpointLocation
212 loc_sp->SetCallback(SBBreakpointCallbackBaton::PrivateBreakpointHitCallback, in SetCallback()
H A DSBBreakpointName.cpp533 void SBBreakpointName::SetCallback(SBBreakpointHitCallback callback, in SetCallback() function in SBBreakpointName
544 bp_name->GetOptions().SetCallback(SBBreakpointCallbackBaton in SetCallback()
H A DSBBreakpoint.cpp583 void SBBreakpoint::SetCallback(SBBreakpointHitCallback callback, void *baton) { in SetCallback() function in SBBreakpoint
592 bkpt_sp->SetCallback(SBBreakpointCallbackBaton in SetCallback()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp367 bp_options.SetCallback(ScriptInterpreterLua::BreakpointCallbackFunction, in RegisterBreakpointCallback()
388 wp_options->SetCallback(ScriptInterpreterLua::WatchpointCallbackFunction, in RegisterWatchpointCallback()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp208 wp_options->SetCallback(WatchpointOptionsCallbackFunction, baton_sp); in IOHandlerInputComplete()
238 wp_options->SetCallback(WatchpointOptionsCallbackFunction, baton_sp); in SetWatchpointCommandCallback()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp219 breakpoint->SetCallback( in Activate()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp279 breakpoint->SetCallback(InstrumentationRuntimeUBSan::NotifyBreakpointHit, in Activate()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp242 entry_break->SetCallback(EntryBreakpointHit, this, true); in ProbeEntry()
376 dyld_break->SetCallback(RendezvousBreakpointHit, this, true); in SetRendezvousBreakpoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp211 bp->SetCallback(JITDebugBreakpointHit, this, true); in SetJITBreakpoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp542 bp_options.SetCallback( in IOHandlerInputComplete()
565 wp_options->SetCallback( in IOHandlerInputComplete()
1222 bp_options.SetCallback( in SetBreakpointCommandCallback()
1252 bp_options.SetCallback( in SetBreakpointCommandCallback()
1277 wp_options->SetCallback( in SetWatchpointCommandCallback()

12