Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 1034) sorted by relevance

12345678910>>...42

/llvm-project-15.0.7/lldb/test/Shell/Commands/
H A Dcommand-disassemble.s17 # CHECK-NEXT: command-disassemble.s.tmp`foo:
26 # CHECK-NEXT: command-disassemble.s.tmp`bar:
37 # CHECK-NEXT: command-disassemble.s.tmp`foo:
43 # CHECK-NEXT: command-disassemble.s.tmp`foo:
56 # CHECK-NEXT: command-disassemble.s.tmp`very_long:
61 # CHECK-NEXT: command-disassemble.s.tmp`very_long:
65 # CHECK-NEXT: command-disassemble.s.tmp`foo:
76 # CHECK-NEXT: command-disassemble.s.tmp`n1::case1:
79 # CHECK-NEXT: command-disassemble.s.tmp`n2::case1:
83 # CHECK-NEXT: command-disassemble.s.tmp`n1::case2:
[all …]
H A Dcommand-source.test1 # Check that stop command source on error.
3 # RUN: not %lldb -x -b -o "command source -e 1 %s" 2>&1 | FileCheck %s --check-prefix STOP
4 # RUN: %lldb -x -b -o "command source -e 0 %s" 2>&1 | FileCheck %s --check-prefix CONTINUE
5 # RUN: not %lldb -x -b -o 'settings set interpreter.stop-command-source-on-error true' -o "command
6 # RUN: %lldb -x -b -o 'settings set interpreter.stop-command-source-on-error false' -o "command sou…
H A Dcommand-disassemble-process.yaml7 # RUN: %lldb -c %t %T/command-disassemble-process.exe \
12 # RUN: %lldb -c %t %T/command-disassemble-process.big.exe \
16 # RUN: %lldb -c %t %T/command-disassemble-process.exe \
22 # CHECK-NEXT: command-disassemble-process.exe`main:
28 # CHECK-NEXT: command-disassemble-process.exe`main:
34 # CHECK-NEXT: command-disassemble-process.exe`main:
40 # CHECK-NEXT: command-disassemble-process.exe`main:
46 # CHECK-NEXT: command-disassemble-process.exe`main:
52 # CHECK-NEXT: command-disassemble-process.exe`main:
61 # CHECK-NEXT: command-disassemble-process.exe`main:
[all …]
/llvm-project-15.0.7/lldb/test/API/commands/command/script/
H A Dcallables.py8 def check(debugger, command, context, result, internal_dict): argument
10 not isinstance(command, str) or
22 check(debugger, command, context, result, internal_dict)
24 def foobar(debugger, command, context, result, internal_dict): argument
25 check(debugger, command, context, result, internal_dict)
27 def foobar4(debugger, command, result, internal_dict): argument
28 check(debugger, command, None, result, internal_dict)
46 def sfoobar4(debugger, command, result, internal_dict): argument
47 check(debugger, command, None, result, internal_dict)
51 check(debugger, command, None, result, internal_dict)
[all …]
H A Dpy_import5 command script add welcome --class welcome.WelcomeCommand
8 command script import mysto.py --allow-reload
13 command script import decorated.py
16 command script import callables.py
18 command script add -f callables.foobar foobar
19 command script add -f callables.foobar4 foobar4
20 command script add -f callables.vfoobar vfoobar
21 command script add -f callables.v5foobar v5foobar
23 command script add -f callables.FooBar.sfoobar sfoobar
31 command script add -f callables.FooBarObj ofoobar
[all …]
/llvm-project-15.0.7/lldb/source/Utility/
H A DArgs.cpp100 command = command.substr(regular); in ParseSingleArgument()
106 command = command.drop_front(); in ParseSingleArgument()
120 command = command.drop_front(); in ParseSingleArgument()
140 command = ParseDoubleQuotes(command, arg); in ParseSingleArgument()
146 command = command.substr(quoted); in ParseSingleArgument()
151 command = command.drop_front(); in ParseSingleArgument()
169 Args::Args(llvm::StringRef command) { SetCommandString(command); } in Args() argument
213 command.clear(); in GetCommandString()
247 command = ltrimForArgs(command); in SetCommandString()
251 std::tie(arg, quote, command) = ParseSingleArgument(command); in SetCommandString()
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/thread_plan/
H A DTestThreadPlanCommands.py34 interp.HandleCommand(command, result)
35 print("Command: %s"%(command))
40 (command, result.GetError()))
101 command = "thread plan list %d"%(current_id)
105 command = "thread plan list -i %d"%(current_id)
109 command = "thread plan list -t %d"%(current_tid)
113 command = "thread plan list -t %d %d"%(current_tid, current_id)
124 command = "thread plan list -t %d"%(fake_tid)
125 self.check_list_output(command)
133 command = "thread plan list %d"%(current_id)
[all …]
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/intelpt/
H A Dintelpt_testcase.py88 command = "thread trace start"
90 command += " " + str(thread.GetIndexID())
92 command += " -s " + str(iptTraceSize)
94 command += " --tsc"
109 command = "process trace start"
113 command += " --tsc"
117 command += " --per-cpu-tracing"
132 command = "thread trace stop"
134 command += " " + str(thread.GetIndexID())
154 command = f"trace save {traceBundleDir}"
[all …]
/llvm-project-15.0.7/llvm/utils/lit/lit/llvm/
H A Dsubst.py17 command = config.lit_config.params.get(self.name)
18 if command is None:
20 command = lit.util.which(self.name, dirs)
21 if not command:
25 command += ' -verify-machineinstrs'
29 command += ' go=' + exe
30 return command
82 self.command = command if command is not None else FindTool(key)
115 if isinstance(self.command, FindTool):
116 command_str = self.command.resolve(config, search_dirs)
[all …]
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DCompletionRequestTest.cpp15 std::string command = "a bad c"; in TEST() local
36 std::string command = "a bad c "; in TEST() local
37 const unsigned cursor_pos = command.size(); in TEST()
42 EXPECT_EQ(request.GetRawLine(), command); in TEST()
52 std::string command = "a bad c"; in TEST() local
68 std::string command = "a bad c"; in TEST() local
78 std::string command = "a bad c"; in TEST() local
89 std::string command = "a bad c"; in TEST() local
121 std::string command = "a bad c"; in TEST() local
184 std::string command = "a bad c"; in TEST() local
[all …]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/
H A DParseCommand.py20 from dex.command.CommandBase import CommandBase
30 from dex.command.commands.DexLabel import DexLabel
111 command = eval(raw_text, valid_commands)
113 command.raw_text = raw_text
114 command.path = path
115 command.lineno = lineno
116 return command
129 for command in valid_commands:
130 idx = line.find(command, start)
293 command = _build_command(
[all …]
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp37 bool CommandObjectIterateOverThreads::DoExecute(Args &command, in DoExecute() argument
42 if (command.GetArgumentCount() == 0) { in DoExecute()
47 } else if (command.GetArgumentCount() == 1) { in DoExecute()
48 all_threads = ::strcmp(command.GetArgumentAtIndex(0), "all") == 0; in DoExecute()
63 const size_t num_args = command.GetArgumentCount(); in DoExecute()
73 command.GetArgumentAtIndex(i)); in DoExecute()
82 command.GetArgumentAtIndex(i)); in DoExecute()
170 bool CommandObjectMultipleThreads::DoExecute(Args &command, in DoExecute() argument
175 const size_t num_args = command.GetArgumentCount(); in DoExecute()
193 command.GetArgumentAtIndex(i)); in DoExecute()
[all …]
/llvm-project-15.0.7/lldb/examples/customization/import-python/
H A DREADME5 Python module which provides implementation for the 'import' command.
12 The import command defined by importcmd.py can be used in LLDB to load a Python
14 The command works by extending Python's sys.path lookup to include the path to
16 ordinary 'import' mechanism. In this respect, modules imported from LLDB command
18 The following terminal output shows an interaction with lldb using this new command.
22 (lldb) command script add import -f importcmd.pyimport_cmd
30 command, can be included in the .lldbinit file to make this feature available at
33 WARNING: The import command defined by importcmd.py is now obsolete
35 (lldb) command script import ../demo.py
40 using the native "command script import" command, which offers a superset of what the import comman…
/llvm-project-15.0.7/libc/docs/
H A Dheader_generation.rst23 by the command. The replacement text can span multiple lines.
28 A command should be listed on a line by itself, and should not span more than
29 one line. The first token to appear on the line is the command name prefixed
63 header generation tool when processing a command.
68 This is a replacement command which should be listed in an input ``.h.def``
78 This command instructs that the line on which the command appears should be
80 command.
85 This is not a replacement command. It is an error to list it in the input
87 ``include_file`` command (the ``.h.inc`` files). A common use of this command it
98 line on which this command is listed.
[all …]
/llvm-project-15.0.7/libcxx/utils/ci/
H A Dbuildkite-pipeline.yml26 command: "libcxx/utils/ci/run-buildbot check-format"
55 command: "libcxx/utils/ci/run-buildbot documentation"
75 command: "libcxx/utils/ci/run-buildbot generic-cxx2b"
89 command: "libcxx/utils/ci/run-buildbot generic-cxx11"
103 command: "libcxx/utils/ci/run-buildbot generic-cxx03"
131 command: "libcxx/utils/ci/run-buildbot generic-gcc"
745 command: "libcxx/utils/ci/run-buildbot aarch64"
773 command: "libcxx/utils/ci/run-buildbot armv8"
801 command: "libcxx/utils/ci/run-buildbot armv7"
831 command: "libcxx/utils/ci/run-buildbot aix"
[all …]
/llvm-project-15.0.7/lldb/test/API/commands/target/stop-hooks/
H A DTestStopHookScripted.py32 command = "target stop-hook add -P stop_hook.bad_handle_stop"
33 self.interp.HandleCommand(command, result)
38 command = "target stop-hook add -P stop_hook.no_handle_stop"
40 self.interp.HandleCommand(command, result)
83command = "target stop-hook add -G 1 -P stop_hook.stop_handler -k increment -v 5 -n step_out_of_me"
85 self.interp.HandleCommand(command, result)
113 command = "command script import " + script_name
114 self.interp.HandleCommand(command, result)
129 command = "target stop-hook add -P stop_hook.stop_handler -k increment -v 5 "
131 command += specifier
[all …]
/llvm-project-15.0.7/lldb/test/Shell/Commands/CommandScriptImmediateOutput/Inputs/
H A Dcustom_command.py6 def split(command): argument
7 command = command.strip()
8 return command.rsplit(' ', 1)
10 def command_function(debugger, command, exe_ctx, result, internal_dict): argument
15 def write_file(debugger, command, exe_ctx, result, internal_dict): argument
16 args = split(command)
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DDiagnosticCommentKinds.td50 "empty paragraph passed to '%select{\\|@}0%1' command">,
54 "duplicated command '%select{\\|@}0%1'">,
58 "previous command '%select{\\|@}0%1' here">;
63 // \param command
81 "command should be used in a comment attached to "
88 "command should not be used in a comment attached to a "
112 // tparam command
133 // \returns command
146 // \deprecated command
169 "unknown command tag name">,
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/test/
H A Dexecute-command.test29 # No command name
32 # Invalid, non-scalar command name
33 {"jsonrpc":"2.0","id":4,"method":"workspace/executeCommand","params":{"command": {}}}
38 {"jsonrpc":"2.0","id":6,"method":"workspace/executeCommand","params":{"command":"clangd.applyFix","…
40 # Unknown command.
41 {"jsonrpc":"2.0","id":7,"method":"workspace/executeCommand","params":{"command":"mycommand"}}
44 {"jsonrpc":"2.0","id":8,"method":"workspace/executeCommand","params":{"command":"clangd.applyFix","…
50 {"jsonrpc":"2.0","id":10,"method":"workspace/executeCommand","params":{"command":"clangd.applyFix",…
56 {"jsonrpc":"2.0","id":12,"method":"workspace/executeCommand","params":{"command":"clangd.applyFix",…
59 {"jsonrpc":"2.0","id":13,"method":"workspace/executeCommand","params":{"command":"clangd.applyFix",…
[all …]
/llvm-project-15.0.7/clang/test/Sema/
H A Dwarn-documentation.m6 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
9 // expected-warning@+2 {{empty paragraph passed to '\brief' command}}
23 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
27 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
32 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
37 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
51 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
56 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
59 // expected-warning@+1 {{empty paragraph passed to '\brief' command}}
153 // expected-warning@+3 {{unknown command tag name}}
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp99 if (command == KDP_RESUMECPUS) in SendRequestAndGetReply()
342 const CommandType command = KDP_CONNECT; in SendRequestConnect() local
369 const CommandType command = KDP_REATTACH; in SendRequestReattach() local
403 const CommandType command = KDP_VERSION; in SendRequestVersion() local
489 const CommandType command = KDP_HOSTINFO; in SendRequestHostInfo() local
647 switch (command) { in GetCommandAsCString()
742 switch (command) { in DumpPacket()
893 switch (command) { in DumpPacket()
1173 const CommandType command = KDP_READREGS; in SendRequestReadRegisters() local
1255 const CommandType command = in SendRequestBreakpoint() local
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/AArch64/
H A Dmacho-private-headers.test8 CHECK: Load command 0
46 CHECK: Load command 1
51 CHECK: Load command 2
58 CHECK: Load command 3
83 EXE: Load command 0
95 EXE: Load command 1
172 EXE: Load command 2
210 EXE: Load command 3
222 EXE: Load command 4
235 EXE: Load command 5
[all …]
/llvm-project-15.0.7/lldb/test/Shell/helper/
H A Dtoolchain.py50 command=FindTool('lldb'),
54 command=FindTool('lldb'),
58 command=FindTool('lldb'),
62 command=FindTool("lldb-server"),
66 command=FindTool(dsname),
70 command=FindTool('lldb-server'),
76 command="'" + sys.executable + "'",
110 ToolSubst('%msvc_cl', command=cl, extra_args=compiler_flags),
111 ToolSubst('%msvc_link', command=link, extra_args=linker_flags)]
177 command=FindTool('lldb-repro'),
[all …]
/llvm-project-15.0.7/lldb/test/Shell/ScriptInterpreter/Python/Inputs/
H A Drelative.split2 command script import magritte
6 def magritte(debugger, command, result, internal_dict):
10 debugger.HandleCommand('command script add -f magritte.magritte magritte')
12 command script import -c zip
16 def zip(debugger, command, result, internal_dict):
20 debugger.HandleCommand('command script add -f zip.zip zip')
/llvm-project-15.0.7/llvm/test/Object/
H A Dmacho-invalid.test28 MULTIPLE-NOT-4: truncated or malformed object (load command 0 cmdsize not a multiple of 4)
273 …runcated or malformed object (load command 0 LC_LAZY_LOAD_DYLIB library name extends past the end …
309 …uncated or malformed object (load command 0 LC_LOAD_DYLINKER name.offset field extends past the en…
312 …truncated or malformed object (load command 0 LC_DYLD_ENVIRONMENT dyld name extends past the end o…
324 …: truncated or malformed object (load command 0 LC_RPATH path.offset field extends past the end of…
327 …g': truncated or malformed object (load command 0 LC_RPATH library name extends past the end of th…
372 …: truncated or malformed object (load command 0 LC_SUB_CLIENT client name extends past the end of …
384 …pastend': truncated or malformed object (load command 0 count in LC_UNIXTHREAD extends past end of…
390 …wn': truncated or malformed object (load command 0 unknown flavor (507) for flavor number 0 in LC_…
393 …: truncated or malformed object (load command 0 x86_THREAD_STATE64 extends past end of command in …
[all …]

12345678910>>...42