/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
H A D | ScriptInterpreterLua.cpp | 112 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 114 bp_options, data.c_str(), /*is_callback=*/false); in IOHandlerInputComplete() 343 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() argument 347 return RegisterBreakpointCallback(bp_options, oneliner.c_str(), in SetBreakpointCommandCallbackFunction() 352 BreakpointOptions &bp_options, const char *command_body_text, in SetBreakpointCommandCallback() argument 354 return RegisterBreakpointCallback(bp_options, command_body_text, {}); in SetBreakpointCommandCallback() 358 BreakpointOptions &bp_options, const char *command_body_text, in RegisterBreakpointCallback() argument 367 bp_options.SetCallback(ScriptInterpreterLua::BreakpointCallbackFunction, in RegisterBreakpointCallback()
|
H A D | ScriptInterpreterLua.h | 90 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, 99 BreakpointOptions &bp_options, const char *function_name, 106 Status RegisterBreakpointCallback(BreakpointOptions &bp_options,
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | ScriptInterpreter.cpp | 42 WatchpointOptions *bp_options, CommandReturnObject &result) { in CollectDataForWatchpointCommandCallback() argument 143 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallback() 144 error = SetBreakpointCommandCallback(bp_options, callback_text, in SetBreakpointCommandCallback() 156 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallbackFunction() 157 error = SetBreakpointCommandCallbackFunction(bp_options, function_name, in SetBreakpointCommandCallbackFunction()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBBreakpointLocation.cpp | 233 BreakpointOptions &bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackFunction() 238 ->SetBreakpointCommandCallbackFunction(bp_options, in SetScriptCallbackFunction() 259 BreakpointOptions &bp_options = loc_sp->GetLocationOptions(); in SetScriptCallbackBody() 265 ->SetBreakpointCommandCallback(bp_options, callback_body_text, in SetScriptCallbackBody() 234 BreakpointOptions &bp_options = loc_sp->GetLocationOptions(); SetScriptCallbackFunction() local 260 BreakpointOptions &bp_options = loc_sp->GetLocationOptions(); SetScriptCallbackBody() local
|
H A D | SBBreakpointName.cpp | 572 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackFunction() local 578 bp_options, callback_function_name, in SetScriptCallbackFunction() 597 BreakpointOptions &bp_options = bp_name->GetOptions(); in SetScriptCallbackBody() local 602 bp_options, callback_body_text, /*is_callback=*/false); in SetScriptCallbackBody()
|
H A D | SBBreakpoint.cpp | 616 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackFunction() local 620 ->SetBreakpointCommandCallbackFunction(bp_options, in SetScriptCallbackFunction() 640 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackBody() local 645 ->SetBreakpointCommandCallback(bp_options, callback_body_text, in SetScriptCallbackBody()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectBreakpointCommand.cpp | 210 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 213 bp_options.SetCommandDataCallback(cmd_data); in IOHandlerInputComplete() 231 for (BreakpointOptions &bp_options : bp_options_vec) { in SetBreakpointCommandCallback() 237 bp_options.SetCommandDataCallback(cmd_data); in SetBreakpointCommandCallback()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPythonImpl.h | 259 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, 264 BreakpointOptions &bp_options, const char *function_name, 269 BreakpointOptions &bp_options, 272 Status SetBreakpointCommandCallback(BreakpointOptions &bp_options,
|
H A D | ScriptInterpreterPython.cpp | 533 for (BreakpointOptions &bp_options : *bp_options_vec) { in IOHandlerInputComplete() 547 bp_options.SetCallback( in IOHandlerInputComplete() 1173 BreakpointOptions &bp_options, const char *function_name, in SetBreakpointCommandCallbackFunction() argument 1208 SetBreakpointCommandCallback(bp_options, function_signature.c_str(), in SetBreakpointCommandCallbackFunction() 1215 BreakpointOptions &bp_options, in SetBreakpointCommandCallback() argument 1227 bp_options.SetCallback( in SetBreakpointCommandCallback() 1233 BreakpointOptions &bp_options, const char *command_body_text, in SetBreakpointCommandCallback() argument 1235 return SetBreakpointCommandCallback(bp_options, command_body_text, {}, in SetBreakpointCommandCallback() 1241 BreakpointOptions &bp_options, const char *command_body_text, in SetBreakpointCommandCallback() argument 1257 bp_options.SetCallback( in SetBreakpointCommandCallback()
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointOptions.cpp | 294 auto bp_options = std::make_unique<BreakpointOptions>( in CreateFromStructuredData() local 299 bp_options->SetCommandDataCallback(cmd_data_up); in CreateFromStructuredData() 316 interp->SetBreakpointCommandCallback(*bp_options, cmd_data_up); in CreateFromStructuredData() 339 bp_options->SetThreadSpec(thread_spec_up); in CreateFromStructuredData() 341 return bp_options; in CreateFromStructuredData()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | ScriptInterpreter.h | 324 virtual Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, in SetBreakpointCommandCallback() argument 334 BreakpointOptions &bp_options, in SetBreakpointCommandCallback() argument 347 SetBreakpointCommandCallbackFunction(BreakpointOptions &bp_options, in SetBreakpointCommandCallbackFunction() argument
|