Searched refs:command (Results 76 - 100 of 602) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sbin/fdisk/
H A Dfdisk.c997 parse_config_line(char *line, CMD *command) argument
1003 memset(command, 0, sizeof(*command));
1008 command->cmd = *cp++;
1020 command->args[command->n_args].argtype = *cp++;
1022 command->args[command->n_args].arg_val = strtoul(cp, &end, 0);
1028 command->args[command
1041 process_geometry(CMD *command) argument
1159 process_partition(CMD *command) argument
1298 process_active(CMD *command) argument
1335 CMD command; local
[all...]
/freebsd-9.3-release/sys/x86/cpufreq/
H A Dsmist.c71 int command; member in struct:smist_softc
128 int15_gsic_call(int *sig, int *smi_cmd, int *command, int *smi_data, int *flags) argument
140 *command = (vmf.vmf_ebx >> 16) & 0xff;
146 *command = -1;
157 int command; member in struct:set_ownership_data
180 : "a" (data->command),
219 cb_data.command = sc->command;
255 : "a" (sc->command),
321 int sig, smi_cmd, command, smi_dat local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/cli/
H A Dcli-script.c1 /* GDB CLI command scripting.
51 /* Source command state variable. */
71 /* Allocate, initialize a new command line structure for one of the
95 /* Build and return a new command structure for the control commands
104 /* Allocate and build a new command line structure. */
109 /* Read in the body of this command. */
121 /* Recursively print a command (including full control structures). */
136 /* A simple command, print it and continue. */
164 /* A while command. Recursively print its subcommands and continue. */
178 /* An if command
445 struct command_line *command = NULL; local
463 struct command_line *command = NULL; local
654 realloc_body_list(struct command_line *command, int new_length) argument
679 read_next_line(struct command_line **command) argument
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/mi/
H A Dmi-cmd-var.c40 mi_cmd_var_create (char *command, char **argv, int argc) argument
113 mi_cmd_var_delete (char *command, char **argv, int argc) argument
170 mi_cmd_var_set_format (char *command, char **argv, int argc) argument
214 mi_cmd_var_show_format (char *command, char **argv, int argc) argument
235 mi_cmd_var_info_num_children (char *command, char **argv, int argc) argument
252 mi_cmd_var_list_children (char *command, char **argv, int argc) argument
314 mi_cmd_var_info_type (char *command, char **argv, int argc) argument
331 mi_cmd_var_info_expression (char *command, char **argv, int argc) argument
352 mi_cmd_var_show_attributes (char *command, char **argv, int argc) argument
378 mi_cmd_var_evaluate_expression (char *command, cha argument
395 mi_cmd_var_assign(char *command, char **argv, int argc) argument
422 mi_cmd_var_update(char *command, char **argv, int argc) argument
[all...]
H A Dmi-cmd-env.c33 #include "command.h"
70 mi_cmd_env_pwd (char *command, char **argv, int argc) argument
91 mi_cmd_env_cd (char *command, char **argv, int argc) argument
114 mi_cmd_env_path (char *command, char **argv, int argc) argument
188 mi_cmd_env_dir (char *command, char **argv, int argc) argument
H A Dmi-cmd-file.c33 mi_cmd_file_list_exec_source_file(char *command, char **argv, int argc) argument
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DProgram.inc179 // Windows wants a command line, not an array of args, to pass to the new
183 // First, determine the length of the command line.
189 // Now build the command line.
190 OwningArrayPtr<char> command(new char[len+1]);
191 char *p = command.get();
302 if (error_code ec = windows::UTF8ToUTF16(command.get(), CommandUtf16)) {
305 std::string("Unable to convert command-line to UTF-16"));
448 // The documented max length of the command line passed to CreateProcess.
/freebsd-9.3-release/sys/boot/arm/at91/bootiic/
H A Denv_vars.c45 * to service the command prompt during auto-boot or just to setup the
76 * This global function write the current command table to the non-volatile
109 * void SetBootCommand(int index, char *command)
111 * at command. Execute this function with a NULL string to clear the
112 * associated command index.
116 SetBootCommand(int index, char *command) argument
124 if (!command)
128 boot_commands[index][i] = command[i];
163 * coverts it to the standard, command-index format. Notice, the processed
164 * boot command tabl
[all...]
/freebsd-9.3-release/contrib/cvs/contrib/
H A Ddescend.sh15 # descend - walk down a directory tree and execute a command at each node
19 usage="Usage: $name [-afqrv] command [directory ...]\n
24 \040\040-v\040\040Verbose: print command before executing it"
59 # Get command to execute
64 command=$1
79 # Execute specified command
84 echo $command
86 eval "$command" || if [ -z "$force" ] ; then exit 1; fi
114 $fullname $options "$command" "$file" \
/freebsd-9.3-release/contrib/tcsh/
H A Dtc.func.c193 dolist(Char **v, struct command *c)
219 struct command *t;
299 /* build a syntax tree for the command. */
384 dotelltc(Char **v, struct command *c)
395 doechotc(Char **v, struct command *c)
405 dosettc(Char **v, struct command *c)
466 dowhich(Char **v, struct command *c)
794 * is executed as a command. This is done
797 * one's current directory just before each command.
923 * foregrounded. The command i
[all...]
H A Dsh.parse.c44 static struct command *syn0 (const struct wordent *, const struct wordent *, int);
45 static struct command *syn1 (const struct wordent *, const struct wordent *, int);
46 static struct command *syn1a (const struct wordent *, const struct wordent *, int);
47 static struct command *syn1b (const struct wordent *, const struct wordent *, int);
48 static struct command *syn2 (const struct wordent *, const struct wordent *, int);
49 static struct command *syn3 (const struct wordent *, const struct wordent *, int);
56 * If word 0 of a command has an alias, do it.
208 struct command *
225 static struct command *
229 struct command *
[all...]
/freebsd-9.3-release/contrib/texinfo/makeinfo/
H A Dfiles.h57 char *command; member in struct:delayed_write
/freebsd-9.3-release/contrib/top/
H A Dmachine.h72 char *command; /* only this command (unless == NULL) */ member in struct:process_select
/freebsd-9.3-release/etc/rc.d/
H A Dnscd24 command=/usr/sbin/nscd
26 flush_cmd="${command} -I all"
/freebsd-9.3-release/usr.sbin/bluetooth/hccontrol/
H A Dhccontrol.h36 #define ERROR 1 /* could not execute command */
43 char const *command; member in struct:hci_command
/freebsd-9.3-release/sys/dev/ixgb/
H A Dixgb_hw.c735 * This requires that first an address cycle command is sent, followed by a
736 * read command.
746 uint32_t command = 0; local
752 /* Setup and write the address cycle command */
753 command = ((reg_address << IXGB_MSCA_NP_ADDR_SHIFT) |
758 IXGB_WRITE_REG(hw, MSCA, command);
771 command = IXGB_READ_REG(hw, MSCA);
773 if ((command & IXGB_MSCA_MDI_COMMAND) == 0)
777 ASSERT((command & IXGB_MSCA_MDI_COMMAND) == 0);
779 /* Address cycle complete, setup and write the read command */
839 uint32_t command = 0; local
[all...]
/freebsd-9.3-release/contrib/nvi/tk/
H A Dinit.tcl14 .menu.file.fileops add command -label "Edit ..." \
15 -command "tk_edit" -underline 0
16 .menu.file.fileops add command -label "Save File" \
17 -command "tk_write" -underline 0
18 .menu.file.fileops add command -label "Save File as ..." \
19 -command "tk_writeas" -underline 1
20 .menu.file.fileops add command -label "Save and Quit" \
21 -command "tk_writequit" -underline 7
22 .menu.file.fileops add command -label "Quit" \
23 -command "tk_qui
[all...]
/freebsd-9.3-release/sys/ddb/
H A Ddb_command.c82 static struct command db_show_all_cmds[] = {
88 static struct command db_show_cmds[] = {
96 static struct command db_cmds[] = {
147 static struct command *db_last_command = 0;
169 * Results of command search.
177 static void db_cmd_match(char *name, struct command *cmd,
178 struct command **cmdp, int *resultp);
181 struct command **cmdp);
182 static void db_command(struct command **last_cmdp,
186 * Initialize the command list
516 db_command_script(const char *command) argument
[all...]
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Dsh_calls.d57 sh*:::command-entry
H A Dsh_flowinfo.d23 * NAME Shell function, builtin or command name
63 sh*:::command-entry,
64 sh*:::command-return,
112 sh*:::command-entry
122 sh*:::command-return
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Shell/
H A Dsh_calls.d57 sh*:::command-entry
H A Dsh_flowinfo.d23 * NAME Shell function, builtin or command name
63 sh*:::command-entry,
64 sh*:::command-return,
112 sh*:::command-entry
122 sh*:::command-return
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestProbeData.java79 System.err.println("usage: java TestProbedata <command>");
83 String command = args[0];
102 consumer.createProcess(command);
/freebsd-9.3-release/sys/dev/adb/
H A Dadb.h59 u_int adb_send_packet(device_t dev, u_char command, u_char reg, int len,
64 u_int adb_receive_raw_packet(device_t dev, u_char status, u_char command,
/freebsd-9.3-release/sys/dev/agp/
H A Dagp.c331 u_int32_t command; local
381 command = 0;
382 command = AGP_MODE_SET_RQ(0, rq);
383 command = AGP_MODE_SET_ARQSZ(command, arqsz);
384 command = AGP_MODE_SET_CAL(command, cal);
385 command = AGP_MODE_SET_SBA(command, sba);
386 command
400 u_int32_t command; local
[all...]

Completed in 148 milliseconds

1234567891011>>