Home
last modified time | relevance | path

Searched refs:command_body_text (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h91 const char *command_body_text) override;
94 const char *command_body_text) override;
105 const char *command_body_text,
109 const char *command_body_text,
H A DScriptInterpreterLua.cpp346 BreakpointOptions &bp_options, const char *command_body_text) { in SetBreakpointCommandCallback() argument
347 return RegisterBreakpointCallback(bp_options, command_body_text, {}); in SetBreakpointCommandCallback()
351 BreakpointOptions &bp_options, const char *command_body_text, in RegisterBreakpointCallback() argument
355 error = m_lua->RegisterBreakpointCallback(data_up.get(), command_body_text); in RegisterBreakpointCallback()
366 WatchpointOptions *wp_options, const char *command_body_text) { in SetWatchpointCommandCallback() argument
367 RegisterWatchpointCallback(wp_options, command_body_text, {}); in SetWatchpointCommandCallback()
371 WatchpointOptions *wp_options, const char *command_body_text, in RegisterWatchpointCallback() argument
375 error = m_lua->RegisterWatchpointCallback(data_up.get(), command_body_text); in RegisterWatchpointCallback()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h269 const char *command_body_text,
H A DScriptInterpreterPython.cpp1326 BreakpointOptions &bp_options, const char *command_body_text) { in SetBreakpointCommandCallback() argument
1327 return SetBreakpointCommandCallback(bp_options, command_body_text, {},false); in SetBreakpointCommandCallback()
1332 BreakpointOptions &bp_options, const char *command_body_text, in SetBreakpointCommandCallback() argument
1340 data_up->user_source.SplitIntoLines(command_body_text); in SetBreakpointCommandCallback()