Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/lldb/source/Breakpoint/
HDWatchpoint.cpp76 Watchpoint::SetCallback (WatchpointHitCallback callback, void *baton, bool is_synchronous) in SetCallback() function in Watchpoint
80 m_options.SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous); in SetCallback()
88 Watchpoint::SetCallback (WatchpointHitCallback callback, const BatonSP &callback_baton_sp, bool is_… in SetCallback() function in Watchpoint
90 m_options.SetCallback(callback, callback_baton_sp, is_synchronous); in SetCallback()
HDBreakpointLocation.cpp225 BreakpointLocation::SetCallback (BreakpointHitCallback callback, void *baton, in SetCallback() function in BreakpointLocation
230 GetLocationOptions()->SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous); in SetCallback()
235 BreakpointLocation::SetCallback (BreakpointHitCallback callback, const BatonSP &baton_sp, in SetCallback() function in BreakpointLocation
238 GetLocationOptions()->SetCallback (callback, baton_sp, is_synchronous); in SetCallback()
HDWatchpointOptions.cpp82 orig.SetCallback (orig_callback, orig_callback_baton_sp, orig_is_sync); in CopyOptionsNoCallback()
98 WatchpointOptions::SetCallback (WatchpointHitCallback callback, const BatonSP &callback_baton_sp, b… in SetCallback() function in WatchpointOptions
HDBreakpoint.cpp309 Breakpoint::SetCallback (BreakpointHitCallback callback, void *baton, bool is_synchronous) in SetCallback() function in Breakpoint
313 m_options.SetCallback(callback, BatonSP (new Baton(baton)), is_synchronous); in SetCallback()
321 Breakpoint::SetCallback (BreakpointHitCallback callback, const BatonSP &callback_baton_sp, bool is_… in SetCallback() function in Breakpoint
323 m_options.SetCallback(callback, callback_baton_sp, is_synchronous); in SetCallback()
HDBreakpointOptions.cpp97 orig.SetCallback (orig_callback, orig_callback_baton_sp, orig_is_sync); in CopyOptionsNoCallback()
113 BreakpointOptions::SetCallback (BreakpointHitCallback callback, const BatonSP &callback_baton_sp, b… in SetCallback() function in BreakpointOptions
/trueos/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
HDBreakpointLocation.h151 SetCallback (BreakpointHitCallback callback,
156 SetCallback (BreakpointHitCallback callback,
HDWatchpoint.h144 SetCallback (WatchpointHitCallback callback,
149 SetCallback (WatchpointHitCallback callback,
HDBreakpoint.h441 SetCallback (BreakpointHitCallback callback,
446 SetCallback (BreakpointHitCallback callback,
HDWatchpointOptions.h100 …void SetCallback (WatchpointHitCallback callback, const lldb::BatonSP &baton_sp, bool synchronous …
HDBreakpointOptions.h113 …void SetCallback (BreakpointHitCallback callback, const lldb::BatonSP &baton_sp, bool synchronous …
/trueos/contrib/llvm/tools/lldb/include/lldb/API/
HDSBBreakpoint.h119 SetCallback (BreakpointHitCallback callback, void *baton);
/trueos/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
HDDynamicLoaderPOSIXDYLD.cpp197 entry_break->SetCallback(EntryBreakpointHit, this, true); in ProbeEntry()
230 dyld_break->SetCallback(RendezvousBreakpointHit, this, true); in SetRendezvousBreakpoint()
/trueos/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectWatchpointCommand.cpp218 wp_options->SetCallback (WatchpointOptionsCallbackFunction, baton_sp); in IOHandlerInputComplete()
248 wp_options->SetCallback (WatchpointOptionsCallbackFunction, baton_sp); in SetWatchpointCommandCallback()
HDCommandObjectBreakpointCommand.cpp239 bp_options->SetCallback (BreakpointOptionsCallbackFunction, baton_sp); in IOHandlerInputComplete()
270 bp_options->SetCallback (BreakpointOptionsCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
/trueos/contrib/llvm/tools/lldb/source/API/
HDSBBreakpoint.cpp567 SBBreakpoint::SetCallback (BreakpointHitCallback callback, void *baton) in SetCallback() function in SBBreakpoint
578 m_opaque_sp->SetCallback (SBBreakpoint::PrivateBreakpointHitCallback, baton_sp, false); in SetCallback()
/trueos/contrib/llvm/tools/lldb/source/Interpreter/
HDScriptInterpreterPython.cpp267 … bp_options->SetCallback (ScriptInterpreterPython::BreakpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
293 … wp_options->SetCallback (ScriptInterpreterPython::WatchpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
1110 bp_options->SetCallback (ScriptInterpreterPython::BreakpointCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
1133 wp_options->SetCallback (ScriptInterpreterPython::WatchpointCallbackFunction, baton_sp); in SetWatchpointCommandCallback()
/trueos/contrib/llvm/tools/lldb/include/lldb/Utility/
HDSharingPtr.h542 void SetCallback(Callback cb, void* baton) in SetCallback() function
/trueos/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDProcessGDBRemote.cpp3031 … m_thread_create_bp_sp->SetCallback (ProcessGDBRemote::NewThreadNotifyBreakpointHit, this, true); in StartNoticingNewThreads()