Symbol: commands
bin/chio/chio.c
175
for (i = 0; commands[i].cc_name != NULL; ++i)
bin/chio/chio.c
176
if (strcmp(*argv, commands[i].cc_name) == 0)
bin/chio/chio.c
178
if (commands[i].cc_name == NULL)
bin/chio/chio.c
184
exit((*commands[i].cc_handler)(commands[i].cc_name, argc, argv));
bin/chio/chio.c
852
for (i = 0; commands[i].cc_name != NULL; i++)
bin/chio/chio.c
853
(void)fprintf(stderr, "\t%s%s\n", commands[i].cc_name,
bin/chio/chio.c
854
commands[i].cc_args);
bin/chio/chio.c
91
const struct changer_command commands[] = {
bin/mt/mt.c
116
const struct commands *cp, *comp;
bin/mt/mt.c
79
static const struct commands com[] = {
crypto/dist/ipsec-tools/src/setkey/parse.y
151
commands
crypto/dist/ipsec-tools/src/setkey/parse.y
153
| commands command
distrib/utils/more/extern.h
40
void commands __P((void));
distrib/utils/more/main.c
320
commands();
sbin/atactl/atactl.c
498
const struct command *commands = NULL;
sbin/atactl/atactl.c
539
commands = &device_commands[i];
sbin/atactl/atactl.c
543
if (commands == NULL) {
sbin/atactl/atactl.c
546
commands = &bus_commands[i];
sbin/atactl/atactl.c
551
if (commands == NULL)
sbin/atactl/atactl.c
554
(*commands->cmd_func)(argc, argv);
sbin/bioctl/bioctl.c
161
for (i = 0; commands[i].cmd_name != NULL; i++)
sbin/bioctl/bioctl.c
162
if (strcmp(cmdname, commands[i].cmd_name) == 0)
sbin/bioctl/bioctl.c
164
if (commands[i].cmd_name == NULL)
sbin/bioctl/bioctl.c
178
(*commands[i].cmd_func)(fd, argc, argv);
sbin/bioctl/bioctl.c
193
for (i = 0; commands[i].cmd_name != NULL; i++)
sbin/bioctl/bioctl.c
194
(void)fprintf(stderr, " %s %s\n", commands[i].cmd_name,
sbin/bioctl/bioctl.c
195
commands[i].arg_names);
sbin/bioctl/bioctl.c
99
static struct command commands[] = {
sbin/dkctl/dkctl.c
108
static struct command commands[] = {
sbin/dkctl/dkctl.c
218
for (i = 0; commands[i].cmd_name != NULL; i++)
sbin/dkctl/dkctl.c
219
if (strcmp(name, commands[i].cmd_name) == 0)
sbin/dkctl/dkctl.c
221
if (commands[i].cmd_name == NULL)
sbin/dkctl/dkctl.c
224
return &commands[i];
sbin/dkctl/dkctl.c
238
for (i = 0; commands[i].cmd_name != NULL; i++)
sbin/dkctl/dkctl.c
239
fprintf(stderr, "\t%s %s\n", commands[i].cmd_name,
sbin/dkctl/dkctl.c
240
commands[i].arg_names);
sbin/dmctl/dmctl.c
181
for (i = 0; commands[i].cmd_name != NULL; i++)
sbin/dmctl/dmctl.c
182
if (strcmp(cmdname, commands[i].cmd_name) == 0)
sbin/dmctl/dmctl.c
185
if (commands[i].cmd_name == NULL)
sbin/dmctl/dmctl.c
188
if (commands[i].ioctl_cmd_name != NULL)
sbin/dmctl/dmctl.c
189
cmdname = commands[i].ioctl_cmd_name;
sbin/dmctl/dmctl.c
191
if (oargc != commands[i].min_args) {
sbin/dmctl/dmctl.c
193
"command: %s specified\n", commands[i].cmd_name);
sbin/dmctl/dmctl.c
204
(*commands[i].cmd_func)(argc, argv, task);
sbin/dmctl/dmctl.c
546
for (i = 0; commands[i].cmd_name != NULL; i++)
sbin/dmctl/dmctl.c
547
(void)fprintf(stderr, "\t%s\t%s\n", commands[i].cmd_name, commands[i].cmd_help);
sbin/dmctl/dmctl.c
88
static struct command commands[] = {
sbin/scsictl/scsictl.c
138
struct command *commands;
sbin/scsictl/scsictl.c
179
commands = bus_commands;
sbin/scsictl/scsictl.c
181
commands = device_commands;
sbin/scsictl/scsictl.c
184
for (i = 0; commands[i].cmd_name != NULL; i++)
sbin/scsictl/scsictl.c
185
if (strcmp(cmdname, commands[i].cmd_name) == 0)
sbin/scsictl/scsictl.c
187
if (commands[i].cmd_name == NULL)
sbin/scsictl/scsictl.c
189
commands == bus_commands ? "bus" : "device", cmdname);
sbin/scsictl/scsictl.c
191
(*commands[i].cmd_func)(argc, argv);
sys/arch/hpcmips/stand/lcboot/main.c
152
static struct bootmenu_command commands[] = {
sys/arch/hpcmips/stand/lcboot/main.c
849
for (i = 0; commands[i].c_name != NULL; i++) {
sys/arch/hpcmips/stand/lcboot/main.c
850
if (strcmp(cmd, commands[i].c_name) == 0) {
sys/arch/hpcmips/stand/lcboot/main.c
851
commands[i].c_fn(opt);
sys/arch/hpcmips/stand/lcboot/main.c
855
if (commands[i].c_name == NULL) {
sys/arch/i386/stand/boot/boot2.c
145
const struct bootblk_command commands[] = {
sys/arch/i386/stand/dosboot/main.c
70
const struct bootblk_command commands[] = {
sys/arch/i386/stand/efiboot/boot.c
95
const struct bootblk_command commands[] = {
sys/arch/i386/stand/lib/libi386.h
118
extern const struct bootblk_command commands[];
sys/arch/i386/stand/lib/menuutils.c
53
for (i = 0; commands[i].c_name != NULL; i++) {
sys/arch/i386/stand/lib/menuutils.c
54
if (strcmp(arg, commands[i].c_name) == 0) {
sys/arch/i386/stand/lib/menuutils.c
55
(*commands[i].c_fn)(options);
sys/arch/i386/stand/pxeboot/main.c
70
const struct bootblk_command commands[] = {
sys/arch/ia64/stand/common/bootstrap.h
298
extern struct bootblk_command commands[];
sys/arch/ia64/stand/common/commands.c
241
for (i = 0, cmdp = commands; (cmdp->c_name != NULL) && (cmdp->c_desc != NULL ); i++, cmdp = commands + i) {
sys/arch/ia64/stand/common/interp.c
81
for (i = 0, cmdp = commands; (cmdp->c_name != NULL) && (cmdp->c_desc != NULL ); i++, cmdp = commands + i) {
sys/arch/ia64/stand/ia64/efi/main.c
624
struct bootblk_command commands[] = {
sys/arch/ia64/stand/ia64/ski/main.c
44
struct bootblk_command commands[] = {
sys/arch/macppc/dev/dbdma.c
43
dbdma_start(dbdma_regmap_t *dmap, dbdma_command_t *commands)
sys/arch/macppc/dev/dbdma.c
45
unsigned long addr = vtophys((vaddr_t)commands);
sys/arch/macppc/dev/dbdma.c
48
panic("dbdma_start command structure not 16-byte aligned %08x %08x", (uint32_t)commands, (uint32_t)addr);
sys/arch/macppc/dev/dbdma.h
162
void dbdma_start(dbdma_regmap_t *channel, dbdma_command_t *commands);
sys/netbt/hci.h
1681
uint8_t commands[HCI_COMMANDS_SIZE]; /* opcode bitmask */
sys/netbt/hci_event.c
1184
memcpy(unit->hci_cmds, rp.commands, HCI_COMMANDS_SIZE);
sys/stand/efiboot/boot.c
121
const struct boot_command commands[] = {
sys/stand/efiboot/boot.c
177
for (n = 0; commands[n].c_name; n++) {
sys/stand/efiboot/boot.c
178
if (commands[n].c_help)
sys/stand/efiboot/boot.c
179
printf("%s\n", commands[n].c_help);
sys/stand/efiboot/efiboot.h
54
extern const struct boot_command commands[];
sys/stand/efiboot/prompt.c
138
for (i = 0; commands[i].c_name != NULL; i++) {
sys/stand/efiboot/prompt.c
139
if (strcmp(arg, commands[i].c_name) == 0) {
sys/stand/efiboot/prompt.c
140
(*commands[i].c_fn)(options);
tests/lib/libcurses/slave/command_table.h
431
size_t ncmds = sizeof(commands) / sizeof(struct command_def);
tests/lib/libcurses/slave/command_table.h
46
struct command_def commands[] = {
tests/lib/libcurses/slave/commands.c
57
if (strcmp(func, commands[i].name) != 0)
tests/lib/libcurses/slave/commands.c
64
commands[i].func(nargs, args);
tests/lib/libcurses/slave/commands.c
77
commands[i].func(nargs, args);
usr.bin/mail/extern.h
187
void commands(void);
usr.bin/mail/lex.c
1131
commands();
usr.bin/mail/main.c
461
commands();
usr.bin/make/compat.c
286
Lst_Append(&endNode->commands, cmdStart);
usr.bin/make/compat.c
445
for (ln = gn->commands.first; ln != NULL; ln = ln->next) {
usr.bin/make/cond.c
327
!Lst_IsEmpty(&gn->commands);
usr.bin/make/job.c
1138
for (ln = job->node->commands.first; ln != NULL; ln = ln->next) {
usr.bin/make/job.c
1174
Lst_Append(&Targ_GetEndNode()->commands, expanded_cmd);
usr.bin/make/job.c
1205
for (ln = job->node->commands.first; ln != NULL; ln = ln->next) {
usr.bin/make/job.c
1454
if (!Lst_IsEmpty(&gn->commands))
usr.bin/make/job.c
1463
if (defaultNode != NULL && !Lst_IsEmpty(&defaultNode->commands) &&
usr.bin/make/job.c
1759
if (Lst_IsEmpty(&gn->commands)) {
usr.bin/make/job.c
2493
if (!Lst_IsEmpty(&dotEnd->commands) ||
usr.bin/make/main.c
2067
for (ln = gn->commands.first; ln != NULL; ln = ln->next) {
usr.bin/make/make.c
426
Lst_IsEmpty(&pgn->commands)) {
usr.bin/make/make.c
429
Lst_PrependAll(&pgn->commands, &cgn->commands);
usr.bin/make/make.c
432
Lst_AppendAll(&pgn->commands, &cgn->commands);
usr.bin/make/make.c
543
if (!Lst_IsEmpty(gn->commands) || Lst_IsEmpty(gn->children))
usr.bin/make/make.h
512
StringList commands;
usr.bin/make/meta.c
1188
cmdNode = gn->commands.first;
usr.bin/make/meta.c
305
for (ln = gn->commands.first; ln != NULL; ln = ln->next) {
usr.bin/make/meta.c
331
for (ln = gn->commands.first; ln != NULL; ln = ln->next)
usr.bin/make/meta.c
372
if (Lst_IsEmpty(&gn->commands)) {
usr.bin/make/parse.c
1992
Lst_Append(&gn->commands, cmd);
usr.bin/make/parse.c
2688
if (!Lst_IsEmpty(&gn->commands))
usr.bin/make/suff.c
1155
if (sgn->type & OP_OPTIONAL && Lst_IsEmpty(&tgn->commands)) {
usr.bin/make/suff.c
1695
if (Lst_IsEmpty(&gn->commands))
usr.bin/make/suff.c
589
Lst_Done(&gn->commands);
usr.bin/make/suff.c
590
Lst_Init(&gn->commands);
usr.bin/make/suff.c
635
if (!Lst_IsEmpty(&gn->commands) || !Lst_IsEmpty(&gn->children)) {
usr.bin/make/targ.c
206
Lst_Init(&gn->commands);
usr.bin/make/targ.c
248
Lst_Done(&gn->commands);
usr.bin/make/targ.c
362
for (ln = gn->commands.first; ln != NULL; ln = ln->next) {
usr.bin/sdpquery/sdpquery.c
143
for (cmd = commands ; cmd->command != NULL; cmd++) {
usr.bin/sdpquery/sdpquery.c
174
for (cmd = commands ; cmd->command != NULL ; cmd++)
usr.bin/sdpquery/sdpquery.c
66
} commands[] = {
usr.bin/usbhidaction/usbhidaction.c
162
commands = parse_conf(conf, repd, reportid, ignore);
usr.bin/usbhidaction/usbhidaction.c
199
for (cmd = commands; cmd; cmd = cmd->next) {
usr.bin/usbhidaction/usbhidaction.c
208
freecommands(commands);
usr.bin/usbhidaction/usbhidaction.c
209
commands = cmds;
usr.bin/usbhidaction/usbhidaction.c
69
static struct command *commands;
usr.sbin/pcictl/pcictl.c
131
for (i = 0; commands[i].cmd_name != NULL; i++)
usr.sbin/pcictl/pcictl.c
132
if (strcmp(cmdname, commands[i].cmd_name) == 0)
usr.sbin/pcictl/pcictl.c
134
if (commands[i].cmd_name == NULL)
usr.sbin/pcictl/pcictl.c
142
pcifd = open(dvname, commands[i].open_flags);
usr.sbin/pcictl/pcictl.c
150
(*commands[i].cmd_func)(argc, argv);
usr.sbin/pcictl/pcictl.c
163
for (i = 0; commands[i].cmd_name != NULL; i++)
usr.sbin/pcictl/pcictl.c
164
fprintf(stderr, "\t%s %s\n", commands[i].cmd_name,
usr.sbin/pcictl/pcictl.c
165
commands[i].arg_names);
usr.sbin/pcictl/pcictl.c
83
static const struct command commands[] = {
usr.sbin/wgconfig/wgconfig.c
777
} commands[] = {
usr.sbin/wgconfig/wgconfig.c
816
for (size_t i = 0; i < __arraycount(commands); i++) {
usr.sbin/wgconfig/wgconfig.c
817
const struct command *cmd = &commands[i];