Home
last modified time | relevance | path

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

12345678910>>...63

/freebsd-12.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.index.d89 command[i + k].str = command[j].str;
95 command[i + k].str = command[j].str;
101 command[i + k].str = command[j].str;
107 command[i + k].str = command[j].str;
113 command[i + k].str = command[j].str;
192 command[i].str, command[i].substr, command[i].position);
194 command[i].str, command[i].substr, command[i].position);
196 command[i].str, command[i].substr, command[i].position);
211 command[i].str, command[i].substr, command[i].position);
213 command[i].str, command[i].substr, command[i].position);
[all …]
H A Dtst.substr.d37 } command[int]; variable
48 command[i].index = 3;
89 command[i].length = strlen(str) - command[i].index + 1;
93 command[i].length = strlen(str) - command[i].index + 2;
166 command[i].alt = 1;
171 command[i].alt = 1;
210 str, command[i].index, command[i].length);
213 this->str, this->str2, command[i].index, command[i].length,
216 this->str, this->str2, command[i].index, command[i].length);
218 this->str, this->str2, command[i].index, command[i].length);
[all …]
H A Dtst.strtok.d91 } command[int]; variable
97 command[i].s1 = "";
98 command[i].s2 = "";
103 command[i].s2 = "";
104 command[i].result = command[i].s1;
108 command[i].s2 = "o";
119 command[i].result = command[i].s1;
122 command[i].s1 = "";
133 (this->result = strtok(command[i].s1, command[i].s2)) != command[i].result/
136 command[i].s1, command[i].s2,
[all …]
/freebsd-12.1/sys/dev/ips/
H A Dips_commands.c58 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ips_io_request_finish()
61 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ips_io_request_finish()
64 bus_dmamap_unload(command->data_dmatag, command->data_dmamap); in ips_io_request_finish()
70 ips_insert_free_cmd(command->sc, command); in ips_io_request_finish()
87 bus_dmamap_unload(command->data_dmatag, command->data_dmamap); in ips_io_request_callback()
127 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ips_io_request_callback()
130 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ips_io_request_callback()
147 bus_dmamap_load(command->data_dmatag, command->data_dmamap, in ips_send_io_request()
192 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ips_adapter_info_callback()
200 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ips_adapter_info_callback()
[all …]
H A Dips.c116 ips_command_t *command; in ips_cmdqueue_free() local
157 command->id = i; in ips_cmdqueue_init()
158 command->sc = sc; in ips_cmdqueue_init()
168 command->command_buffer, command->command_dmamap); in ips_cmdqueue_init()
215 *cmd = command; in ips_get_free_cmd()
321 command[i].callback(&command[i]); in ips_timeout()
529 command->callback(command); in ips_morpheus_check_intr()
565 command->callback(command); in ips_issue_morpheus_cmd()
569 ips_write_4(command->sc, MORPHEUS_REG_IQPR, command->command_phys_addr); in ips_issue_morpheus_cmd()
734 command->callback(command); in ips_issue_copperhead_cmd()
[all …]
H A Dips_ioctl.c47 bus_dmamap_sync(command->sc->command_dmatag, command->command_dmamap, in ips_ioctl_finish()
51 ips_insert_free_cmd(command->sc, command); in ips_ioctl_finish()
56 ips_command_t *command = cmdptr; in ips_ioctl_callback() local
60 ips_set_error(command, error); in ips_ioctl_callback()
63 command_buffer->id = command->id; in ips_ioctl_callback()
72 bus_dmamap_sync(command->sc->command_dmatag, command->command_dmamap, in ips_ioctl_callback()
74 command->sc->ips_issue_cmd(command); in ips_ioctl_callback()
90 ips_command_t *command; in ips_ioctl_cmd() local
124 command->arg = ioctl_cmd; in ips_ioctl_cmd()
125 ips_ioctl_start(command); in ips_ioctl_cmd()
[all …]
H A Dips_disk.c187 ips_command_t *command; in ipsd_dump() local
223 if (bus_dmamap_load(command->data_dmatag, command->data_dmamap, in ipsd_dump()
238 ips_insert_free_cmd(command->sc, command); in ipsd_dump()
246 ips_command_t *command; in ipsd_dump_map_sg() local
252 sc = command->sc; in ipsd_dump_map_sg()
286 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ipsd_dump_map_sg()
289 sc->ips_issue_cmd(command); in ipsd_dump_map_sg()
290 sc->ips_poll_cmd(command); in ipsd_dump_map_sg()
298 if (COMMAND_ERROR(command)) in ipsd_dump_block_complete()
302 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ipsd_dump_block_complete()
[all …]
H A Dips.h70 #define clear_ips_command(command) bzero(&((command)->status), (unsigned long)(&(command)[1])-(unsi… argument
74 #define COMMAND_ERROR(command) (((command)->status.fields.basic_status & IPS_GSC_STATUS_MASK) >= I… argument
76 #define ips_set_error(command, error) do { \ argument
77 (command)->status.fields.basic_status = IPS_DRV_ERROR; \
78 (command)->status.fields.reserved = ((error) & 0x0f); \
114 void (* callback)(struct ips_command *command);
149 void (* ips_issue_cmd)(ips_command_t *command);
150 void (* ips_poll_cmd)(ips_command_t *command);
180 extern void ips_issue_morpheus_cmd(ips_command_t *command);
181 extern void ips_morpheus_poll(ips_command_t *command);
[all …]
/freebsd-12.1/contrib/tcsh/
H A Dsh.decls.h42 extern void goodbye (Char **, struct command *);
61 extern void dodirs (Char **, struct command *);
68 extern void dopopd (Char **, struct command *);
78 extern void Dfix (struct command *);
115 extern void doexec (struct command *, int);
156 extern void doif (Char **, struct command *);
178 extern void func (struct command *,
187 extern void reexecute (struct command *);
308 extern void freesyn (struct command *);
359 extern pid_t pfork (struct command *, int);
[all …]
H A Dtc.decls.h58 extern void showall (Char **, struct command *);
63 extern void dobindkey (Char **, struct command *);
83 extern void dolist (Char **, struct command *);
85 extern void dotelltc (Char **, struct command *);
86 extern void doechotc (Char **, struct command *);
87 extern void dosettc (Char **, struct command *);
89 extern void dowhich (Char **, struct command *);
136 extern void dowarp (Char **, struct command *);
152 extern void doatt (Char **, struct command *);
153 extern void doucb (Char **, struct command *);
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DArgs.cpp101 command = command.substr(regular); in ParseSingleArgument()
107 command = command.drop_front(); in ParseSingleArgument()
121 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()
172 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 …]
/freebsd-12.1/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y622 temp = realloc(command.args, sizeof(*temp) * (command.nargs + 1)); in assign_arg()
625 command.args = temp; in assign_arg()
626 memcpy(&command.args[command.nargs], &cur, sizeof(args_t)); in assign_arg()
627 command.nargs++; in assign_arg()
669 temp = realloc(command.returns, sizeof(*temp) * (command.nrets + 1)); in assign_rets()
673 memcpy(&command.returns[command.nrets], &cur, sizeof(returns_t)); in assign_rets()
674 command.nrets++; in assign_rets()
1068 free(command.args); in init_parse_variables()
1083 command.nargs = 0; in init_parse_variables()
1084 command.args = NULL; in init_parse_variables()
[all …]
/freebsd-12.1/bin/sh/tests/builtins/
H A Dcommand6.03 case $(command -pV ls) in
5 echo "Failed: \$(command -pV ls) should not match */var/empty/ls*" ;;
8 echo "Failed: \$(command -pV ls) match \"ls is\"*\" \"/*/ls" ;;
10 command -pV true
11 command -pV /bin/ls
16 command -pV fun
17 command -pV break
18 command -pV if
19 command -pV {
22 command -pV foo
H A Dlocale1.020 case $(command . /var/empty/foo 2>&1) in
27 case $(LC_ALL=C command . /var/empty/foo 2>&1) in
33 case $(LC_ALL=C LANG=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in
45 case $(LC_CTYPE=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in
52 case $(export LANG=nl_NL.ISO8859-1; command . /var/empty/foo 2>&1) in
70 case $(LANG=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in
82 case $(LC_ALL=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1) in
89 case $(command . /var/empty/foo 2>&1) in
95 case $(LANG=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1; command . /var/empty/foo 2>&1) in
101 case $(LC_MESSAGES=nl_NL.ISO8859-1 command . /var/empty/foo 2>&1; command . /var/empty/foo 2>&1) in
[all …]
H A Dcommand7.012 check '"$(PATH=/libexec command -V ld-elf.so.1)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
13 check '"$(PATH=/libexec command -V ld-elf.so.1; :)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
14 check '"$(PATH=/libexec command -pv ld-elf.so.1)" = ""'
15 check '"$(PATH=/libexec command -pv ld-elf.so.1; :)" = ""'
19 check '"$(command -V ld-elf.so.1)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
20 check '"$(command -V ld-elf.so.1; :)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
21 check '"$(command -pv ld-elf.so.1)" = ""'
22 check '"$(command -pv ld-elf.so.1; :)" = ""'
26 check '"$(command -v ls)" = ""'
27 case $(command -pv ls) in
[all …]
H A Dcommand5.02 command -V ls
3 command -V true
4 command -V /bin/ls
9 command -V fun
10 command -V break
11 command -V if
12 command -V {
15 command -V foo
/freebsd-12.1/contrib/bmake/unit-tests/
H A Dposix.exp1 Posix says we should execute the command as if run by system(3)
5 a command
6 a command prefixed by '+' executes even with -n
7 another command
9 echo a command
11 a command prefixed by '+' executes even with -n
12 echo another command
14 { echo a command
17 a command prefixed by '+' executes even with -n
18 { echo another command
/freebsd-12.1/contrib/sendmail/contrib/
H A Dsmcontrol.pl74 my $command = shift;
96 print SOCK "$command\n";
333 my $command = shift;
339 if (not defined $command)
343 if ($command eq "status")
364 elsif (lc($command) eq "shutdown")
368 elsif (lc($command) eq "restart")
372 elsif (lc($command) eq "start")
376 elsif (lc($command) eq "memdump")
380 elsif (lc($command) eq "help")
[all …]
/freebsd-12.1/bin/sh/tests/expansion/
H A Dexport3.08 command export v=$w
10 command command export v=$w
18 command export v=~
20 command command export v=~
27 command export v=x:~
29 command command export v=x:~
H A Dlocal2.09 command local v=$w
11 command command local v=$w
19 command local v=~
21 command command local v=~
28 command local v=x:~
30 command command local v=x:~
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-dfa.h642 CVMX_PREFETCH0(command); in __cvmx_dfa_write_command()
663 *head++ = *command; in __cvmx_dfa_write_command()
718 cvmx_dfa_command_t command; in cvmx_dfa_submit() local
725 command.u64[0] = 0; in cvmx_dfa_submit()
731 command.s.type = graph->type; in cvmx_dfa_submit()
735 command.u64[1] = 0; in cvmx_dfa_submit()
737 command.s.use_gather = use_gather; in cvmx_dfa_submit()
738 command.s.no_L2_alloc = 0; in cvmx_dfa_submit()
739 command.s.full_block_write = 1; in cvmx_dfa_submit()
744 command.u64[2] = 0; in cvmx_dfa_submit()
[all …]
/freebsd-12.1/usr.sbin/bluetooth/bthidcontrol/
H A Dbthidcontrol.c49 static struct bthid_command * find_bthid_command(char const *command, struct bthid_command *categor…
163 fprintf(stdout, "Usage: %s\n%s\n", c->command, c->description); in do_bthid_command()
174 find_bthid_command(char const *command, struct bthid_command *category) in find_bthid_command() argument
178 for (c = category; c->command != NULL; c++) { in find_bthid_command()
179 char *c_end = strchr(c->command, ' '); in find_bthid_command()
182 int len = c_end - c->command; in find_bthid_command()
184 if (strncasecmp(command, c->command, len) == 0) in find_bthid_command()
186 } else if (strcasecmp(command, c->command) == 0) in find_bthid_command()
199 for (c = category; c->command != NULL; c++) in print_bthid_command()
200 fprintf(stdout, "\t%s\n", c->command); in print_bthid_command()
/freebsd-12.1/usr.sbin/autofs/
H A Dpopen.c65 char *command; member
83 char *arg, *argv[ARGV_LEN], *command; in auto_popen() local
98 command = argv[0]; in auto_popen()
109 command = concat(command, ' ', arg); in auto_popen()
113 cur->command = checked_strdup(command); in auto_popen()
134 log_debugx("executing \"%s\" as pid %d", command, pid); in auto_popen()
179 cur->command, pid, WTERMSIG(status)); in auto_pclose()
185 cur->command, pid, WEXITSTATUS(status)); in auto_pclose()
189 log_debugx("\"%s\", pid %d, terminated gracefully", cur->command, pid); in auto_pclose()
191 free(cur->command); in auto_pclose()
/freebsd-12.1/sys/ddb/
H A Ddb_script.c166 char *buffer, *command; in db_script_valid() local
248 char *command; in db_command_trim() local
250 command = *commandp; in db_command_trim()
252 command++; in db_command_trim()
254 db_command_trimmable(command[strlen(command) - 1])) in db_command_trim()
255 command[strlen(command) - 1] = 0; in db_command_trim()
256 *commandp = command; in db_command_trim()
275 char *buffer, *command; in db_script_exec() local
300 command); in db_script_exec()
301 db_command_trim(&command); in db_script_exec()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticCommentKinds.td51 "empty paragraph passed to '%select{\\|@}0%1' command">,
55 "duplicated command '%select{\\|@}0%1'">,
59 "previous command '%select{\\|@}0%1' here">;
64 // \param command
82 "command should be used in a comment attached to "
89 "command should not be used in a comment attached to a "
113 // tparam command
134 // \returns command
147 // \deprecated command
164 "unknown command tag name">,
[all …]

12345678910>>...63