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

1 2 3

  /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);
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
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,
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[]
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++)
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"
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;
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
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"

Completed in 31 milliseconds

1 2 3