Home
last modified time | relevance | path

Searched refs:command (Results 51 – 75 of 1568) sorted by relevance

12345678910>>...63

/freebsd-12.1/contrib/googletest/googletest/test/
H A Dgoogletest-throw-on-failure-test.py68 def Run(command): argument
71 print 'Running "%s". . .' % ' '.join(command)
72 p = gtest_test_utils.Subprocess(command)
107 command = [EXE_PATH]
109 command.append(flag)
116 failed = not Run(command)
122 (THROW_ON_FAILURE, env_var_value_msg, ' '.join(command),
H A Dgoogletest-break-on-failure-unittest.py76 def Run(command): argument
79 p = gtest_test_utils.Subprocess(command, env=environ)
122 command = [EXE_PATH]
124 command.append(flag)
131 has_seg_fault = Run(command)
136 (BREAK_ON_FAILURE_ENV_VAR, env_var_value_msg, ' '.join(command),
/freebsd-12.1/bin/sh/tests/builtins/
H A Dcommand8.020 # Check that special builtins can be executed via "command".
25 ${SH} -c "v=:; while \$v; do v=false; command ${cmd}; done" >/dev/null
29 command break
34 command shift 2
40 command exec >/dev/null
45 ! command shift 2 2>/dev/null
/freebsd-12.1/sys/dev/smbus/
H A Dsmbus_if.m54 # Quick command
63 # Send Byte command
72 # Receive Byte command
81 # Write Byte command
91 # Write Word command
101 # Read Byte command
111 # Read Word command
121 # Process Call command
132 # Block Write command
143 # Block Read command
/freebsd-12.1/sbin/bectl/
H A Dbectl.c100 const char *command; member
131 if (strcmp(cmd, command_map[i].command) == 0) in get_cmd_info()
531 const char *command; in main() local
544 command = argv[3]; in main()
548 command = argv[1]; in main()
554 if (strcmp(command, "umount") == 0) in main()
555 command = "unmount"; in main()
557 if (strcmp(command, "ujail") == 0) in main()
558 command = "unjail"; in main()
560 if ((strcmp(command, "-?") == 0) || (strcmp(command, "-h") == 0)) in main()
[all …]
/freebsd-12.1/crypto/heimdal/kadmin/
H A Dkadmin-commands.in35 command = {
71 command = {
85 command = {
106 command = {
113 command = {
120 command = {
186 command = {
217 command = {
226 command = {
232 command = {
[all …]
/freebsd-12.1/contrib/dialog/
H A Dprgbox.c36 dlg_popen(const char *command, const char *type) in dlg_popen() argument
70 if ((blob = malloc(4 + strlen(command))) != 0) { in dlg_popen()
71 sprintf(blob, "-c %s", command); in dlg_popen()
98 const char *command, in dialog_prgbox() argument
107 fp = dlg_popen(command, "r"); in dialog_prgbox()
109 dlg_exiterr("pipe open failed: %s", command); in dialog_prgbox()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cc139 char command[32]; in SymbolizePC() local
140 internal_snprintf(command, sizeof(command), "0x%zx\n", addr); in SymbolizePC()
141 const char *buf = process_->SendCommand(command); in SymbolizePC()
155 char command[32]; in SymbolizeData() local
156 internal_snprintf(command, sizeof(command), "0x%zx\n", addr); in SymbolizeData()
157 const char *buf = process_->SendCommand(command); in SymbolizeData()
/freebsd-12.1/contrib/less/
H A DNEWS23 * New command ESC-m removes a line mark.
176 command line.
194 * Control-G while editing a command exits the command.
262 * Fix bug in '' (quote, quote) command after G command.
582 * The old -- command is renamed as -!.
633 * Filenames from the command line are entered into the command history,
875 * New command | pipes a section of the input file into a shell command.
877 * New command :x directly jumps to a file in the command line list.
924 * New command ESC-/ searches all files (on the command line)
954 command string passed to the editor by the v command.
[all …]
/freebsd-12.1/usr.sbin/bluetooth/hccontrol/
H A Dhccontrol.c251 fprintf(stdout, "Usage: %s\n%s\n", c->command, c->description); in do_hci_command()
263 find_hci_command(char const *command, struct hci_command *category) in find_hci_command() argument
267 for (c = category; c->command != NULL; c++) { in find_hci_command()
268 char *c_end = strchr(c->command, ' '); in find_hci_command()
271 int len = c_end - c->command; in find_hci_command()
273 if (strncasecmp(command, c->command, len) == 0) in find_hci_command()
275 } else if (strcasecmp(command, c->command) == 0) in find_hci_command()
323 for (c = category; c->command != NULL; c++) in print_hci_command()
324 fprintf(stdout, "\t%s\n", c->command); in print_hci_command()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectType.cpp79 if (command.empty()) in WarnOnPotentialUnquotedUnsignedType()
726 for (auto &arg_entry : command.entries()) { in DoExecute()
965 if (command.GetArgumentCount() > 0) { in DoExecute()
1401 for (auto &entry : command.entries()) { in Execute_ScriptSummary()
1427 for (auto &entry : command.entries()) { in Execute_ScriptSummary()
1501 for (auto &arg_entry : command.entries()) { in Execute_StringSummary()
1871 for (auto &entry : command.entries()) { in DoExecute()
2346 for (auto &entry : command.entries()) { in Execute_HandwritePython()
2411 for (auto &arg_entry : command.entries()) { in Execute_PythonClass()
2995 bool DoExecute(llvm::StringRef command, in DoExecute() argument
[all …]
H A DCommandObjectHelp.cpp24 Stream *s, llvm::StringRef command, llvm::StringRef prefix, llvm::StringRef subcommand, in GenerateAdditionalHelpAvenuesMessage() argument
26 if (!s || command.empty()) in GenerateAdditionalHelpAvenuesMessage()
29 std::string command_str = command.str(); in GenerateAdditionalHelpAvenuesMessage()
83 bool CommandObjectHelp::DoExecute(Args &command, CommandReturnObject &result) { in DoExecute() argument
86 const size_t argc = command.GetArgumentCount(); in DoExecute()
106 auto command_name = command[0].ref; in DoExecute()
116 for (auto &entry : command.entries().drop_front()) { in DoExecute()
139 command.GetCommandString(cmd_string); in DoExecute()
178 command[0].c_str(), sstr.GetData()); in DoExecute()
H A DCommandObjectFrame.cpp372 if (command.GetArgumentCount() > 1) { in DoExecute()
375 command[0].c_str()); in DoExecute()
382 if (command.GetArgumentCount() == 1) { in DoExecute()
383 if (command[0].ref.getAsInteger(0, frame_idx)) { in DoExecute()
385 command[0].c_str()); in DoExecute()
389 } else if (command.GetArgumentCount() == 0) { in DoExecute()
547 if (!command.empty()) { in DoExecute()
552 for (auto &entry : command) { in DoExecute()
959 if (command.GetArgumentCount() == 0) { in DoExecute()
973 if (command.GetArgumentCount() != 1) { in DoExecute()
[all …]
H A DCommandObjectWatchpoint.cpp265 if (command.GetArgumentCount() == 0) { in DoExecute()
277 target, command, wp_ids)) { in DoExecute()
340 if (command.GetArgumentCount() == 0) { in DoExecute()
351 target, command, wp_ids)) { in DoExecute()
411 if (command.GetArgumentCount() == 0) { in DoExecute()
426 target, command, wp_ids)) { in DoExecute()
486 if (command.GetArgumentCount() == 0) { in DoExecute()
502 target, command, wp_ids)) { in DoExecute()
620 target, command, wp_ids)) { in DoExecute()
747 target, command, wp_ids)) { in DoExecute()
[all …]
/freebsd-12.1/contrib/gdb/gdb/mi/
H A Dmi-main.c78 struct mi_parse *command; member
117 mi_cmd_gdb_exit (char *command, char **argv, int argc) in mi_cmd_gdb_exit() argument
1094 struct mi_parse *context = args->command; in captured_mi_execute_command()
1193 struct mi_parse *command; in mi_execute_command() local
1203 command = mi_parse (cmd); in mi_execute_command()
1205 if (command != NULL) in mi_execute_command()
1209 args.command = command; in mi_execute_command()
1217 mi_parse_free (command); in mi_execute_command()
1226 fputs_unfiltered (command->token, raw_stdout); in mi_execute_command()
1231 mi_parse_free (command); in mi_execute_command()
[all …]
H A Dmi-cmd-var.c40 mi_cmd_var_create (char *command, char **argv, int argc) in mi_cmd_var_create() argument
113 mi_cmd_var_delete (char *command, char **argv, int argc) in mi_cmd_var_delete() argument
170 mi_cmd_var_set_format (char *command, char **argv, int argc) in mi_cmd_var_set_format() argument
214 mi_cmd_var_show_format (char *command, char **argv, int argc) in mi_cmd_var_show_format() argument
235 mi_cmd_var_info_num_children (char *command, char **argv, int argc) in mi_cmd_var_info_num_children() argument
252 mi_cmd_var_list_children (char *command, char **argv, int argc) in mi_cmd_var_list_children() argument
314 mi_cmd_var_info_type (char *command, char **argv, int argc) in mi_cmd_var_info_type() argument
331 mi_cmd_var_info_expression (char *command, char **argv, int argc) in mi_cmd_var_info_expression() argument
352 mi_cmd_var_show_attributes (char *command, char **argv, int argc) in mi_cmd_var_show_attributes() argument
395 mi_cmd_var_assign (char *command, char **argv, int argc) in mi_cmd_var_assign() argument
[all …]
/freebsd-12.1/contrib/gdb/gdb/cli/
H A Dcli-interp.c37 static enum gdb_rc safe_execute_command (struct ui_out *uiout, char *command,
41 char *command; member
122 execute_command (args->command, args->from_tty); in do_captured_execute_command()
127 safe_execute_command (struct ui_out *uiout, char *command, int from_tty) in safe_execute_command() argument
130 args.command = command; in safe_execute_command()
/freebsd-12.1/contrib/ntp/ntpdc/
H A Dinvoke-ntpdc.texi49 * ntpdc command:: command option (-c)
86 -c Str command run a command and exit
94 command
158 @node ntpdc command
159 @subsection command option (-c)
160 @cindex ntpdc-command
162 This is the ``run a command and exit'' option.
186 command, listpeers, peers, showpeers.
202 command.
225 command.
[all …]
/freebsd-12.1/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c1040 command("XCWD %s", argv[1]); in cd()
1088 command("DELE %s", argv[1]); in delete()
1116 command("DELE %s", cp); in mdelete()
1147 command("RNTO %s", argv[2]); in renamefile()
1331 command("ACCT %s", argv[3]); in user()
1350 command("XPWD"); in pwd()
1521 command("QUIT"); in disconnect()
1601 command("ACCT %s", acctstr); in account()
1984 command("XCUP"); in cdup()
2007 command("SYST"); in syst()
[all …]
/freebsd-12.1/bin/ed/
H A DPOSIX13 2) To support the BSD `s' command (see extension [1] below),
29 encryption. The `x' command prompts the user to enter a key used for
38 support multiple commands, including `a', `i' and `c'. The command
40 command per line with each line, except for the last, ending in a
47 rest of the line is interpreted as a shell command, and no escape
75 2) Since the behavior of `u' (undo) within a `g' (global) command list is
77 undo forces a global command list to be executed only once, rather than
79 `u' within a global command undoes all previous commands (including
80 undo's) in the command list. This seems the best way, since the
94 3) The `m' (move) command within a `g' command list also follows the SunOS
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp34 bool CommandObjectRegexCommand::DoExecute(llvm::StringRef command, in DoExecute() argument
40 if (pos->regex.Execute(command, &regex_match)) { in DoExecute()
41 std::string new_command(pos->command); in DoExecute()
46 if (regex_match.GetMatchAtIndex(command, match_idx, match_str)) { in DoExecute()
71 result.GetOutputStream() << "Command contents '" << command in DoExecute()
84 m_entries.back().command.assign(command_cstr); in AddRegexCommand()
/freebsd-12.1/contrib/ofed/libibverbs/
H A Dibverbs.h70 (cmd)->command = IB_USER_VERBS_CMD_##opcode; \
72 (cmd)->command = IB_USER_VERBS_CMD_##opcode##_V2; \
80 (cmd)->command = IB_USER_VERBS_CMD_##opcode; \
82 (cmd)->command = IB_USER_VERBS_CMD_##opcode##_V2; \
93 (cmd)->hdr.command = IB_USER_VERBS_CMD_##opcode; \
95 (cmd)->hdr.command = \
/freebsd-12.1/contrib/libxo/doc/
H A Dxohtml.rst13 `xohtml` is given a command, either on the command line or via the "-c"
14 option. If not command is given, standard input is used. The
15 command's output is wrapped in HTML tags, with references to
24 -c <command> Command to execute
28 The "-c" option takes a full command with arguments, including
/freebsd-12.1/lib/libc/stdlib/
H A Dsystem.c53 system(const char *command) in system() argument
57 __libc_interposing[INTERPOS_system])(command)); in system()
61 __libc_system(const char *command) in __libc_system() argument
68 if (!command) /* just checking... */ in __libc_system()
89 execl(_PATH_BSHELL, "sh", "-c", command, (char *)NULL); in __libc_system()
/freebsd-12.1/contrib/netbsd-tests/lib/libc/db/
H A DREADME4 Fairly large files (the command files) are built in this directory during
11 the command for that line, or an initial character indicating a key
12 or data entry for a previous command.
14 Legal command characters are as follows:
23 f: set the flags for the next command
25 g: do a get command
30 p: do a put command
32 r: do a del command
35 s: do a seq command

12345678910>>...63