HomeSort by: relevance | last modified time | path
    Searched defs:commands (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/tests/lib/libcurses/slave/
command_table.h 44 * Curses commands
46 struct command_def commands[] = { variable in typeref:struct:command_def[]
431 size_t ncmds = sizeof(commands) / sizeof(struct command_def);
  /src/usr.bin/make/unit-tests/
deptgt-default.mk 4 # attaches its associated commands to all targets that don't specify any way
11 has-commands: .PHONY
opt-query.mk 6 # None of the commands in the targets are run, not even those that are
13 # commands Ensures that none of the targets is made.
28 . for target in commands
30 @${MAKE} -r -f ${MAKEFILE} -q ${mode:Mjobs:%=-j1} ${target} PART=commands \
59 .elif ${PART} == "commands"
65 # None of these commands are run.
70 # None of these commands are run.
71 commands: target
74 # The exit status 1 is because the "commands" target has to be made, that is,
  /src/sys/arch/ia64/stand/ia64/ski/
main.c 44 struct bootblk_command commands[] = { variable in typeref:struct:bootblk_command[]
  /src/usr.bin/sdpquery/
sdpquery.c 66 } commands[] = { variable in typeref:struct:command[]
143 for (cmd = commands ; cmd->command != NULL; cmd++) {
172 "Commands:\n");
174 for (cmd = commands ; cmd->command != NULL ; cmd++)
  /src/sys/arch/i386/stand/pxeboot/
main.c 70 const struct bootblk_command commands[] = { variable in typeref:typename:const struct bootblk_command[]
200 printf("commands are:\n"
  /src/bin/mt/
mt.c 69 struct commands { struct
79 static const struct commands com[] = {
116 const struct commands *cp, *comp;
  /src/distrib/utils/more/
command.c 329 * Accept and execute commands until a quit command, then return.
332 commands() function in typeref:typename:void
  /src/bin/chio/
chio.c 90 /* Valid commands. */
91 const struct changer_command commands[] = { variable in typeref:typename:const struct changer_command[]
175 for (i = 0; commands[i].cc_name != NULL; ++i)
176 if (strcmp(*argv, commands[i].cc_name) == 0)
178 if (commands[i].cc_name == NULL)
184 exit((*commands[i].cc_handler)(commands[i].cc_name, argc, argv));
721 * We have 3 sub-commands: "load", "unload", and "abort". The
852 for (i = 0; commands[i].cc_name != NULL; i++)
853 (void)fprintf(stderr, "\t%s%s\n", commands[i].cc_name
    [all...]
  /src/sys/arch/hpcmips/stand/lcboot/
main.c 152 static struct bootmenu_command commands[] = { variable in typeref:struct:bootmenu_command[]
406 printf("commands are:\n"
849 for (i = 0; commands[i].c_name != NULL; i++) {
850 if (strcmp(cmd, commands[i].c_name) == 0) {
851 commands[i].c_fn(opt);
855 if (commands[i].c_name == NULL) {
  /src/sys/arch/ia64/stand/ia64/efi/
main.c 624 struct bootblk_command commands[] = { variable in typeref:struct:bootblk_command[]
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_ioctl.c 166 DRM_DEBUG("Only draw commands in execbuffers\n");
295 struct drm_qxl_command __user *commands = local in function:qxl_execbuffer_ioctl
296 u64_to_user_ptr(execbuffer->commands);
298 if (copy_from_user(&user_cmd, commands + cmd_num,
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
qxl_drm.h 96 __u64 commands; /* struct drm_qxl_command* */ member in struct:drm_qxl_execbuffer
  /src/usr.bin/usbhidaction/
usbhidaction.c 69 static struct command *commands; variable in typeref:struct:command *
162 commands = parse_conf(conf, repd, reportid, ignore);
199 for (cmd = commands; cmd; cmd = cmd->next) {
208 freecommands(commands);
209 commands = cmds;
  /src/usr.sbin/pcictl/
pcictl.c 83 static const struct command commands[] = { variable in typeref:typename:const struct command[]
131 for (i = 0; commands[i].cmd_name != NULL; i++)
132 if (strcmp(cmdname, commands[i].cmd_name) == 0)
134 if (commands[i].cmd_name == NULL)
142 pcifd = open(dvname, commands[i].open_flags);
150 (*commands[i].cmd_func)(argc, argv);
162 fprintf(stderr, " Available commands:\n");
163 for (i = 0; commands[i].cmd_name != NULL; i++)
164 fprintf(stderr, "\t%s %s\n", commands[i].cmd_name,
165 commands[i].arg_names)
    [all...]
  /src/sbin/dmctl/
dmctl.c 88 static struct command commands[] = { variable in typeref:struct:command[]
181 for (i = 0; commands[i].cmd_name != NULL; i++)
182 if (strcmp(cmdname, commands[i].cmd_name) == 0)
185 if (commands[i].cmd_name == NULL)
188 if (commands[i].ioctl_cmd_name != NULL)
189 cmdname = commands[i].ioctl_cmd_name;
191 if (oargc != commands[i].min_args) {
193 "command: %s specified\n", commands[i].cmd_name);
204 (*commands[i].cmd_func)(argc, argv, task);
545 "Available commands are:\n ", getprogname())
    [all...]
  /src/sys/arch/i386/stand/dosboot/
main.c 70 const struct bootblk_command commands[] = { variable in typeref:typename:const struct bootblk_command[]
207 printf("dosboot [-u] [-c <commands>] [-i] [filename [-bootopts]]\n");
276 printf("commands are:\n"
  /src/sys/arch/i386/stand/boot/
boot2.c 145 const struct bootblk_command commands[] = { variable in typeref:typename:const struct bootblk_command[]
416 printf("commands are:\n"
  /src/sys/stand/efiboot/
boot.c 121 const struct boot_command commands[] = { variable in typeref:typename:const struct boot_command[]
176 printf("commands are:\n");
177 for (n = 0; commands[n].c_name; n++) {
178 if (commands[n].c_help)
179 printf("%s\n", commands[n].c_help);
  /src/sbin/bioctl/
bioctl.c 99 static struct command commands[] = { variable in typeref:struct:command[]
161 for (i = 0; commands[i].cmd_name != NULL; i++)
162 if (strcmp(cmdname, commands[i].cmd_name) == 0)
164 if (commands[i].cmd_name == NULL)
178 (*commands[i].cmd_func)(fd, argc, argv);
192 (void)fprintf(stderr, "Available commands:\n");
193 for (i = 0; commands[i].cmd_name != NULL; i++)
194 (void)fprintf(stderr, " %s %s\n", commands[i].cmd_name,
195 commands[i].arg_names);
  /src/sbin/dkctl/
dkctl.c 108 static struct command commands[] = { variable in typeref:struct:command[]
218 for (i = 0; commands[i].cmd_name != NULL; i++)
219 if (strcmp(name, commands[i].cmd_name) == 0)
221 if (commands[i].cmd_name == NULL)
224 return &commands[i];
237 fprintf(stderr, " Available commands:\n");
238 for (i = 0; commands[i].cmd_name != NULL; i++)
239 fprintf(stderr, "\t%s %s\n", commands[i].cmd_name,
240 commands[i].arg_names);
  /src/usr.sbin/wgconfig/
wgconfig.c 776 } commands[] = { variable in typeref:typename:const struct command[]
815 for (size_t i = 0; i < __arraycount(commands); i++) {
816 const struct command *cmd = &commands[i];
  /src/usr.bin/mail/
lex.c 56 * Lexical processing of commands.
823 * Dispatching here when commands() is inactive crashes rcv.
878 * Interpret user commands one by one. If standard input is not a tty,
882 commands(void) function in typeref:typename:PUBLIC void
931 * Read a line of commands from the current input
1131 commands();
  /src/sys/arch/i386/stand/efiboot/
boot.c 93 const struct bootblk_command commands[] = { variable in typeref:typename:const struct bootblk_command[]
385 printf("commands are:\n"
  /src/sbin/scsictl/
scsictl.c 137 struct command *commands; local in function:main
178 commands = bus_commands;
180 commands = device_commands;
183 for (i = 0; commands[i].cmd_name != NULL; i++)
184 if (strcmp(cmdname, commands[i].cmd_name) == 0)
186 if (commands[i].cmd_name == NULL)
188 commands == bus_commands ? "bus" : "device", cmdname);
190 (*commands[i].cmd_func)(argc, argv);
202 fprintf(stderr, " Commands pertaining to scsi devices:\n");
206 fprintf(stderr, " Commands pertaining to scsi busses:\n")
    [all...]

Completed in 95 milliseconds

1 2