| /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 */
|
| /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);
|
| /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];
|
| /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
|
| /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.
|
| /src/usr.bin/systat/ |
| 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;
|
| /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");
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| ca_internals_test.c | 80 char *command = test_get_argument(0); local 83 TEST_error("%s: no command specified for testing\n", binname); 87 if (strcmp(command, "do_updatedb") == 0) 90 TEST_error("%s: command '%s' is not supported for testing\n", binname, command);
|
| /src/external/bsd/atf/dist/atf-sh/ |
| atf-sh.cpp | 70 std::string* command = new std::string(); local 71 command->reserve(512); 72 (*command) += ("Atf_Check='" + libexecdir + "/atf-check' ; " + 77 return command;
|
| /src/external/bsd/kyua-cli/dist/bootstrap/ |
| plain_helpers.cpp | 131 const char* command = std::getenv("HELPER"); local 132 if (command == NULL) { 138 for (; iter->name != NULL && std::strcmp(iter->name, command) != 0; iter++) 141 std::cerr << "Usage error: unknown command " << command << "\n"; local
|
| /src/external/bsd/kyua-cli/dist/cli/ |
| main.cpp | 91 /// \param command The subcommand to execute. 92 /// \param args The part of the command line passed to the subcommand. The 93 /// first item of this collection must match the command name. 96 /// \return The exit code of the command. Typically 0 on success, some other 100 /// This error does not encode the command name within it, so this function 107 run_subcommand(cmdline::ui* ui, cli::cli_command* command, 112 PRE(command->name() == args[0]); 113 return command->main(ui, args, user_config); 116 command->name(), e); 133 /// \param argc The number of arguments passed on the command line 197 cli::cli_command* command = commands.find(cmdname); local [all...] |
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| testavl.c | 55 char command[ 10 ]; local 60 while ( fgets( command, sizeof( command ), stdin ) != NULL ) { 61 switch( *command ) {
|
| testtavl.c | 55 char command[ 10 ]; local 60 while ( fgets( command, sizeof( command ), stdin ) != NULL ) { 61 switch( *command ) {
|
| /src/external/gpl2/texinfo/dist/info/ |
| m-x.c | 71 _("Read the name of an Info command and describe it")) 75 line = read_function_name ((char *) _("Describe command: "), window); 98 _("Read a command name in the echo area and execute it")) 107 /* If the where_is () function thinks that this command doesn't exist, 134 /* User wants to execute a named command. Do it. */ 136 InfoCommand *command; local 142 info_error ((char *) _("Cannot execute an `echo-area' command here."), 147 command = named_function (line); 150 if (!command) 153 if (InfoFunction(command)) [all...] |