Home
last modified time | relevance | path

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

12345678910>>...63

/freebsd-13.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-13.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.c120 ips_command_t *command; in ips_cmdqueue_free() local
161 command->id = i; in ips_cmdqueue_init()
162 command->sc = sc; in ips_cmdqueue_init()
172 command->command_buffer, command->command_dmamap); in ips_cmdqueue_init()
219 *cmd = command; in ips_get_free_cmd()
326 command[i].callback(&command[i]); in ips_timeout()
534 command->callback(command); in ips_morpheus_check_intr()
570 command->callback(command); in ips_issue_morpheus_cmd()
574 ips_write_4(command->sc, MORPHEUS_REG_IQPR, command->command_phys_addr); in ips_issue_morpheus_cmd()
739 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.c194 ips_command_t *command; in ipsd_dump() local
230 if (bus_dmamap_load(command->data_dmatag, command->data_dmamap, in ipsd_dump()
245 ips_insert_free_cmd(command->sc, command); in ipsd_dump()
253 ips_command_t *command; in ipsd_dump_map_sg() local
259 sc = command->sc; in ipsd_dump_map_sg()
293 bus_dmamap_sync(command->data_dmatag, command->data_dmamap, in ipsd_dump_map_sg()
296 sc->ips_issue_cmd(command); in ipsd_dump_map_sg()
297 sc->ips_poll_cmd(command); in ipsd_dump_map_sg()
305 if (COMMAND_ERROR(command)) in ipsd_dump_block_complete()
309 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-13.1/contrib/tcsh/
H A Dsh.decls.h41 extern void goodbye (Char **, struct command *);
60 extern void dodirs (Char **, struct command *);
67 extern void dopopd (Char **, struct command *);
77 extern void Dfix (struct command *);
114 extern void doexec (struct command *, int);
155 extern void doif (Char **, struct command *);
177 extern void func (struct command *,
186 extern void reexecute (struct command *);
307 extern void freesyn (struct command *);
358 extern pid_t pfork (struct command *, int);
[all …]
H A Dtc.decls.h57 extern void showall (Char **, struct command *);
62 extern void dobindkey (Char **, struct command *);
82 extern void dolist (Char **, struct command *);
84 extern void dotelltc (Char **, struct command *);
85 extern void doechotc (Char **, struct command *);
86 extern void dosettc (Char **, struct command *);
88 extern void dowhich (Char **, struct command *);
135 extern void dowarp (Char **, struct command *);
151 extern void doatt (Char **, struct command *);
152 extern void doucb (Char **, struct command *);
[all …]
/freebsd-13.1/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_priv.sgml20 <command>wpa_priv</command>
31 <para><command>wpa_priv</command> is a privilege separation helper that
32 minimizes the size of <command>wpa_supplicant</command> code that needs
43 <para><command>wpa_priv</command> needs to be run with network admin
46 be off limits for <command>wpa_supplicant</command> in this kind of
56 <command>wpa_priv</command> to allow users in the
58 <command>wpa_supplicant</command> with privilege separation:</para>
73 <para>Start <command>wpa_priv</command> as root (e.g., from system
115 supported <command>wpa_supplicant</command> driver backends is to be
121 interface is to be managed by <command>wpa_supplicant</command>
[all …]
/freebsd-13.1/contrib/llvm-project/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 …]
/freebsd-13.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-13.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 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
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 …]
/freebsd-13.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-13.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-13.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-13.1/contrib/kyua/utils/cmdline/
H A Dcommands_map.ipp55 /// Inserts a new command into the map.
57 /// \param command The command to insert. This must have been dynamically
59 /// command is freed if the call fails.
68 BaseCommand* ptr = command.release();
75 /// Inserts a new command into the map.
80 /// \param command The command to insert. This must have been dynamically
82 /// command is freed if the call fails.
90 insert(command_ptr(command), category);
127 /// Finds a command by name; mutable version.
129 /// \param name The name of the command to locate.
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp24 bool CommandObjectIterateOverThreads::DoExecute(Args &command, in DoExecute() argument
29 if (command.GetArgumentCount() == 0) { in DoExecute()
34 } else if (command.GetArgumentCount() == 1) { in DoExecute()
35 all_threads = ::strcmp(command.GetArgumentAtIndex(0), "all") == 0; in DoExecute()
50 const size_t num_args = command.GetArgumentCount(); in DoExecute()
60 command.GetArgumentAtIndex(i)); in DoExecute()
69 command.GetArgumentAtIndex(i)); in DoExecute()
157 bool CommandObjectMultipleThreads::DoExecute(Args &command, in DoExecute() argument
162 const size_t num_args = command.GetArgumentCount(); in DoExecute()
180 command.GetArgumentAtIndex(i)); in DoExecute()
[all …]
/freebsd-13.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-13.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()

12345678910>>...63