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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/ntp/dist/ntpd/
ntp_parser.y 405 : command_list command T_EOC
406 | command T_EOC
422 command : /* NULL STATEMENT */ label
1171 /* Command for System Options
1317 | T_Includefile T_String command
1726 /* Revert from ; to \n for end-of-command */
ntp_parser.y 405 : command_list command T_EOC
406 | command T_EOC
422 command : /* NULL STATEMENT */ label
1171 /* Command for System Options
1317 | T_Includefile T_String command
1726 /* Revert from ; to \n for end-of-command */
  /src/external/ibm-public/postfix/dist/src/global/
debug_process.c 54 const char *command; local
59 command = mail_conf_lookup_eval(VAR_DEBUG_COMMAND);
60 if (command == 0 || *command == 0)
62 msg_info("running: %s", command);
63 system(command);
debug_process.c 54 const char *command; local
59 command = mail_conf_lookup_eval(VAR_DEBUG_COMMAND);
60 if (command == 0 || *command == 0)
62 msg_info("running: %s", command);
63 system(command);
  /src/external/mit/libuv/dist/docs/code/onchange/
main.c 7 const char *command; variable
23 system(command);
28 fprintf(stderr, "Usage: %s <command> <file1> [file2 ...]\n", argv[0]);
33 command = argv[1];
main.c 7 const char *command; variable
23 system(command);
28 fprintf(stderr, "Usage: %s <command> <file1> [file2 ...]\n", argv[0]);
33 command = argv[1];
  /src/sys/arch/mac68k/dev/
pm_direct.h 46 /* data structure of the command of the Power Manager */
48 short command; /* command of the Power Manager */ member in struct:__anon1584
pm_direct.h 46 /* data structure of the command of the Power Manager */
48 short command; /* command of the Power Manager */ member in struct:__anon1584
  /src/usr.bin/rdist/
gram.y 85 | file command
88 command: NAME EQUAL namelist = { label
254 yyerror("command string too long\n");
367 * Insert or append ARROW command to list of hosts to be updated.
380 * Search command list for an update to the same host.
393 * Insert new command to update host.
415 * Append DCOLON command to the end of the command list since these are always
504 * Make a sub command for lists of variables, commands, etc.
gram.y 85 | file command
88 command: NAME EQUAL namelist = { label
254 yyerror("command string too long\n");
367 * Insert or append ARROW command to list of hosts to be updated.
380 * Search command list for an update to the same host.
393 * Insert new command to update host.
415 * Append DCOLON command to the end of the command list since these are always
504 * Make a sub command for lists of variables, commands, etc.
  /src/usr.bin/systat/
cmds.c 51 command(char *cmd) function
53 struct command *c;
91 error("%s: Unknown command.", cmd);
cmds.c 51 command(char *cmd) function
53 struct command *c;
91 error("%s: Unknown command.", cmd);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
sh-quote.c 79 char *command; local
91 command = (char *) xmalloc (length);
93 p = command;
104 return command;
sh-quote.c 79 char *command; local
91 command = (char *) xmalloc (length);
93 p = command;
104 return command;
  /src/sys/dev/pci/
adv_pci.c 116 u_int32_t command; local
157 command = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
158 if ((command & (PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MEM_ENABLE |
163 command | (PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MEM_ENABLE |
adw_pci.c 103 u_int32_t command; local
140 command = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
141 command |= PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MEM_ENABLE |
143 pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, command);
145 if ( (command & PCI_COMMAND_PARITY_ENABLE) == 0) {
iha_pci.c 112 pcireg_t command; local
120 command = pci_conf_read(pa->pa_pc,pa->pa_tag,PCI_COMMAND_STATUS_REG);
121 command |= PCI_COMMAND_MASTER_ENABLE | PCI_COMMAND_PARITY_ENABLE;
123 pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, command);
  /src/sys/dev/pckbport/
alpsreg.h 39 uint8_t command; member in struct:alps_nibble_command_data
  /src/sys/dev/wscons/
wsksymvar.h 43 keysym_t command; member in struct:wscons_keymap
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
svga_escape.h 40 * Namespace IDs for the escape command
51 * minor command number, respectively.
53 * Major command number allocation:
85 uint32 command; member in struct:__anon5760
  /src/tests/lib/libc/stdio/
t_popen.c 75 char *buffer, command[MAXPATHLEN]; local
87 (void)snprintf(command, sizeof(command), "%s >%s",
90 if ((my_pipe = popen(command, "w")) == NULL)
99 (void)snprintf(command, sizeof(command), "%s %s", _PATH_CAT, DATAFILE);
101 if ((my_pipe = popen(command, "r")) == NULL)
  /src/tests/libexec/ld.elf_so/
t_ifunc.c 94 char *command; local
95 easprintf(&command, "%s/h_ifunc %lld",
97 if (system(command) != EXIT_SUCCESS)
99 free(command);
157 char *command; local
158 easprintf(&command, "%s/h_ifunc %lld",
160 if (system(command) != EXIT_SUCCESS)
162 free(command);
  /src/usr.bin/mail/
complete.h 44 el_mode_t command; member in struct:el_modes_s
  /src/usr.bin/sdpquery/
sdpquery.c 62 static struct command { struct
63 const char *command; member in struct:command
76 struct command *cmd;
143 for (cmd = commands ; cmd->command != NULL; cmd++) {
144 if (strcasecmp(*argv, cmd->command) == 0)
155 struct command *cmd;
158 "Usage: %s [-NRX] [-d device] -a bdaddr <command> [parameters..]\n"
159 " %s [-NRX] [-c path] -l <command> [parameters..]\n"
174 for (cmd = commands ; cmd->command != NULL ; cmd++)
175 fprintf(stderr, "\t%-13s%s\n", cmd->command, cmd->usage)
    [all...]
  /src/usr.sbin/flashctl/
flashctl.c 57 char *device, *command; local
69 command = argv[2];
78 if (strcmp("erase", command) == 0) {
120 } else if (strcmp("identify", command) == 0) {
153 } else if (strcmp("badblocks", command) == 0) {
190 } else if (strcmp("markbad", command) == 0) {
219 warnx("Unknown command");

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>