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

1 2 3 4 5 6

  /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 in typeref:typename:void
53 struct command *c;
91 error("%s: Unknown command.", cmd);
systat.h 37 const char *c_name; /* command name */
44 struct command *c_commands; /* commands for mode */
48 struct command { struct
  /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:__anona1a840bc0108
  /src/sys/dev/pci/
iha_pci.c 112 pcireg_t command; local in function:iha_pci_attach
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);
adv_pci.c 116 u_int32_t command; local in function:adv_pci_attach
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 in function:adw_pci_attach
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) {
  /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:__anon58d6f1750108
  /src/tests/include/
t_bitstring.c 211 char command[1024]; local in function:one_check
221 snprintf(command, sizeof(command), "diff -u %s/d_bitstring_%d.out out",
223 if (system(command) != EXIT_SUCCESS)
  /src/tests/lib/libc/stdio/
t_popen.c 75 char *buffer, command[MAXPATHLEN]; local in function:ATF_TC_BODY
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 in function:ATF_TC_BODY
95 easprintf(&command, "%s/h_ifunc %lld",
97 if (system(command) != EXIT_SUCCESS)
99 free(command);
157 char *command; local in function:ATF_TC_BODY
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 in function:main
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/usr.bin/make/unit-tests/
cmdline-undefined.mk 3 # Tests for undefined variables in expressions in the command line.
6 # When the command line is parsed, variable assignments using the
11 # expect+30: From the command line: Undefined is .
14 # expect+33: From the command line: Undefined is now defined.
25 # expect+16: From the command line: Undefined is .
28 # expect+19: From the command line: Undefined is now defined.
41 .info From the command line: ${CMDLINE} target
47 .info From the command line: ${CMDLINE} target
  /src/sys/arch/hpc/stand/hpcboot/menu/
tabwindow.h 99 virtual void command(int id, int msg) { /* NO-OP */ } function in class:TabWindow
  /src/usr.sbin/autofs/
popen.c 68 char *command; member in struct:pid
76 * stderr, proper logging, and improved command line arguments passing.
86 char *arg, *argv[ARGV_LEN], *command; local in function:auto_popen
101 command = argv[0];
112 command = concat(command, ' ', arg);
116 cur->command = checked_strdup(command);
137 log_debugx("executing \"%s\" as pid %d", command, pid);
182 cur->command, pid, WTERMSIG(status))
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_symbolizer_mac.cc 55 // Put the string command line argument in the object so that it outlives
139 char command[32]; local in function:__sanitizer::AtosSymbolizer::SymbolizePC
140 internal_snprintf(command, sizeof(command), "0x%zx\n", addr);
141 const char *buf = process_->SendCommand(command);
155 char command[32]; local in function:__sanitizer::AtosSymbolizer::SymbolizeData
156 internal_snprintf(command, sizeof(command), "0x%zx\n", addr);
157 const char *buf = process_->SendCommand(command);
  /src/usr.sbin/apm/
apm.c 84 /* send a command to the apm daemon */
102 struct apm_command command; local in function:do_zzz
109 command.action = SUSPEND;
112 command.action = STANDBY;
122 exit(send_command(fd, &command, &reply));
150 struct apm_command command; local in function:main
265 command.action = action;
271 if ((rval = send_command(fd, &command, &reply)) == 0) {
  /src/sys/dev/cardbus/
if_fxp_cardbus.c 182 pcireg_t command; local in function:fxp_cardbus_setup
186 command = Cardbus_conf_read(csc->ct, tag, PCI_COMMAND_STATUS_REG);
190 command |= PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE;
194 command |= PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MASTER_ENABLE;
198 Cardbus_conf_write(csc->ct, tag, PCI_COMMAND_STATUS_REG, command);
  /src/sys/lib/libsa/
bootcfg.h 46 char *command[BOOTCFG_MAXMENU]; /* Menu commands per entry*/ member in struct:bootcfg_def
  /src/games/atc/
update.c 262 command(const PLANE *pp) function in typeref:typename:const char *
  /src/sbin/wdogctl/
wdogctl.c 83 enum cmd command = CMD_NONE; local in function:main
95 if (command != CMD_NONE)
97 command = CMD_DISABLE;
101 if (command != CMD_NONE)
103 command = CMD_EXT_TICKLE;
107 if (command != CMD_NONE)
109 command = CMD_KERN_TICKLE;
113 if (command != CMD_NONE)
115 command = CMD_DOTICKLE;
128 if (command != CMD_NONE
    [all...]

Completed in 205 milliseconds

1 2 3 4 5 6