Home
last modified time | relevance | path

Searched refs:HandleCommand (Results 1 – 25 of 150) sorted by relevance

123456

/llvm-project-15.0.7/lldb/unittests/API/
H A DSBCommandInterpreterTest.cpp53 m_interp.HandleCommand("dummy", result, /*add_to_history=*/true); in TEST_F()
59 m_interp.HandleCommand("", result); in TEST_F()
69 m_interp.HandleCommand("dummy_with_autorepeat", result, in TEST_F()
76 m_interp.HandleCommand("", result); in TEST_F()
89 m_interp.HandleCommand("multicommand subcommand", result, in TEST_F()
96 m_interp.HandleCommand("", result); in TEST_F()
107 m_interp.HandleCommand("multicommand subcommand_with_autorepeat", result, in TEST_F()
114 m_interp.HandleCommand("", result); in TEST_F()
127 m_interp.HandleCommand("multicommand subcommand_with_custom_autorepeat", in TEST_F()
134 m_interp.HandleCommand("", result); in TEST_F()
/llvm-project-15.0.7/llvm/utils/
H A DlldbDataFormatters.py12 debugger.HandleCommand('type synthetic add -w llvm '
15 debugger.HandleCommand('type summary add -w llvm '
18 debugger.HandleCommand('type synthetic add -w llvm '
21 debugger.HandleCommand('type summary add -w llvm '
24 debugger.HandleCommand('type synthetic add -w llvm '
27 debugger.HandleCommand('type summary add -w llvm '
30 debugger.HandleCommand('type synthetic add -w llvm '
33 debugger.HandleCommand('type summary add -w llvm '
36 debugger.HandleCommand('type summary add -w llvm '
39 debugger.HandleCommand('type summary add -w llvm '
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/memory-region/
H A DTestMemoryRegion.py47 interp.HandleCommand("memory region", result)
54 interp.HandleCommand("memory region --all 0", result)
60 interp.HandleCommand("memory region not_an_address", result)
69 interp.HandleCommand("memory region 0x0", result)
76 interp.HandleCommand("memory region", result)
82 interp.HandleCommand("memory region", result)
87 interp.HandleCommand("memory region --all", result)
/llvm-project-15.0.7/lldb/test/API/functionalities/history/
H A DTestHistoryRecall.py32 interp.HandleCommand("session history", result, True)
42 interp.HandleCommand("session history", result, True)
43 interp.HandleCommand("platform list", result, True)
45 interp.HandleCommand("!0", result, False)
49 interp.HandleCommand("!-1", result, False)
/llvm-project-15.0.7/lldb/test/API/commands/session/save/
H A DTestSessionSave.py37 interpreter.HandleCommand(setting, lldb.SBCommandReturnObject())
47 interpreter.HandleCommand(cmd, res)
55 interpreter.HandleCommand(cmd, res)
63 interpreter.HandleCommand('session save ' + output_file, res)
76 interpreter.HandleCommand('settings set interpreter.save-session-directory ' + td.name, res)
80 interpreter.HandleCommand('session save', res)
109 interpreter.HandleCommand(setting, res)
/llvm-project-15.0.7/lldb/examples/summaries/
H A Dpysummary.py17 debugger.HandleCommand(
19 debugger.HandleCommand(
21 debugger.HandleCommand(
23 debugger.HandleCommand(
H A Dsp_cp.py77 debugger.HandleCommand(
79 debugger.HandleCommand(
81 debugger.HandleCommand(
83 debugger.HandleCommand(
/llvm-project-15.0.7/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/
H A DTestOSPluginStepping.py47 …result = self.dbg.HandleCommand("settings set process.experimental.os-plugin-reports-all-threads f…
64 self.dbg.HandleCommand(command)
87 interp.HandleCommand(command, result)
92 interp.HandleCommand(command, result)
97 interp.HandleCommand("thread plan prune 0x111111111", result)
102 interp.HandleCommand(command, result)
/llvm-project-15.0.7/lldb/examples/python/
H A Ddiagnose_unwind.py190 debugger.HandleCommand(
195 debugger.HandleCommand("register read")
233 debugger.HandleCommand(
254 debugger.HandleCommand(
257 debugger.HandleCommand(
272 debugger.HandleCommand(
275 debugger.HandleCommand('disassemble -a 0x%x' % address)
287 debugger.HandleCommand(
298 debugger.HandleCommand(
312 debugger.HandleCommand(
H A Dstep_and_print.py14 debugger.HandleCommand("thread step-over")
16 debugger.HandleCommand("frame variable %s"%(command))
24 debugger.HandleCommand("command script add -c step_and_print.StepAndPrint sap")
H A Ddisassembly_mode.py19 self.interp.HandleCommand("settings show " + setting, result)
25 self.interp.HandleCommand("settings set " + setting + " " + value, result)
48 …debugger.HandleCommand("command script add -c disassembly_mode.DisassemblyMode toggle-disassembly")
/llvm-project-15.0.7/lldb/test/API/commands/target/stop-hooks/
H A DTestStopHookScripted.py33 self.interp.HandleCommand(command, result)
40 self.interp.HandleCommand(command, result)
85 self.interp.HandleCommand(command, result)
114 self.interp.HandleCommand(command, result)
133 self.interp.HandleCommand(command, result)
/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestCommandInterpreterAPI.py47 ci.HandleCommand("breakpoint set -f main.c -l %d" % self.line, res)
49 ci.HandleCommand("process launch", res)
55 ci.HandleCommand(None, res)
82 ci.HandleCommand("settings set use-color false", res)
/llvm-project-15.0.7/lldb/test/API/functionalities/plugins/command_plugin/
H A DTestPluginCommands.py40 retval = self.dbg.GetCommandInterpreter().HandleCommand(
45 retval = self.dbg.GetCommandInterpreter().HandleCommand(
56 retval = self.dbg.GetCommandInterpreter().HandleCommand(
/llvm-project-15.0.7/lldb/test/API/commands/thread/backtrace/
H A DTestThreadBacktraceRepeat.py55 interp.HandleCommand("thread backtrace --count 10 {0}".format(thread_id), result, True)
69 interp.HandleCommand("", result, True)
140 …interp.HandleCommand("thread backtrace --count 10 --start 10 {0} {1}".format(thread_id_1, thread_i…
144 interp.HandleCommand("", result, True)
151 interp.HandleCommand("", result, True)
/llvm-project-15.0.7/lldb/test/API/commands/command/script/import/thepackage/
H A D__init__.py8 debugger.HandleCommand(
10 debugger.HandleCommand(
/llvm-project-15.0.7/lldb/test/API/commands/frame/var/
H A DTestFrameVar.py58 result = interp.HandleCommand("frame var -l", command_result)
67 result = interp.HandleCommand("frame var -a", command_result)
76 result = interp.HandleCommand("frame var -l -a -g", command_result)
/llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/
H A Dindependent_state.in4 script d:HandleCommand("script foobar = 40 + 2")
6 script d:HandleCommand("script print(foobar)")
/llvm-project-15.0.7/lldb/examples/synthetic/
H A Dlibcxx.py840 debugger.HandleCommand(
842 debugger.HandleCommand(
844 debugger.HandleCommand(
846 debugger.HandleCommand(
848 debugger.HandleCommand(
850 debugger.HandleCommand(
852 debugger.HandleCommand(
854 debugger.HandleCommand(
857 debugger.HandleCommand(
859 debugger.HandleCommand(
[all …]
/llvm-project-15.0.7/lldb/test/API/api/command-return-object/
H A Dmain.cpp9 dbg.GetCommandInterpreter().HandleCommand(cmd, Result); in subcommand()
32 dbg.GetCommandInterpreter().HandleCommand("crasher", Result); in main()
/llvm-project-15.0.7/lldb/test/API/commands/trace/
H A DTestTraceSave.py147 ci.HandleCommand("thread trace dump instructions -c 10 --forwards", res)
151 ci.HandleCommand("thread trace dump instructions -c 10", res)
165 ci.HandleCommand("thread trace dump instructions -c 10 --forwards", res)
169 ci.HandleCommand("thread trace dump instructions -c 10", res)
/llvm-project-15.0.7/lldb/test/API/api/multithreaded/
H A Dsome_cmd.py32 debugger.HandleCommand("command script add -c some_cmd.SomeCommand some-cmd")
33 debugger.HandleCommand("command script add -c some_cmd.OtherCommand report-cmd")
/llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Python/Inputs/
H A Drelative.split10 debugger.HandleCommand('command script add -f magritte.magritte magritte')
20 debugger.HandleCommand('command script add -f zip.zip zip')
/llvm-project-15.0.7/lldb/test/API/functionalities/wrong_commands/
H A DTestWrongCommands.py19 command_interpreter.HandleCommand("g", result)
32 command_interpreter.HandleCommand("qbert", result)
/llvm-project-15.0.7/lldb/test/API/functionalities/multidebugger_commands/
H A DTestMultipleDebuggersCommands.py26 interpreter_1.HandleCommand("apropos env", retobj)
42 interpreter_2.HandleCommand("apropos env", retobj)

123456