Searched refs:command (Results 1 - 25 of 164) sorted by relevance

1234567

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/funcs/
H A Dtst.substr.d37 } command[int];
48 command[i].index = 3;
49 command[i].nolen = 1;
52 command[i].index = 300;
53 command[i].nolen = 1;
56 command[i].index = -10;
57 command[i].nolen = 1;
60 command[i].index = 0;
61 command[i].nolen = 1;
64 command[
[all...]
H A Dtst.index.d36 } command[int];
42 command[i].str = "foobarbaz";
43 command[i].substr = "barbaz";
46 command[i].str = "foofoofoo";
47 command[i].substr = "foo";
50 command[i].str = "boofoofoo";
51 command[i].substr = "foo";
54 command[i].str = "foobarbaz";
55 command[i].substr = "barbazzy";
58 command[
[all...]
H A Dtst.strtok.d91 } command[int];
97 command[i].s1 = "";
98 command[i].s2 = "";
99 command[i].result = "";
102 command[i].s1 = "foo";
103 command[i].s2 = "";
104 command[i].result = command[i].s1;
107 command[i].s1 = "foobar";
108 command[
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dcommand.h8 /** A command-line command */
9 struct command { struct
10 /** Name of the command */
13 * Function implementing the command
22 #define COMMANDS __table ( struct command, "commands" )
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dunistd.h9 extern int execv ( const char *command, char * const argv[] );
12 * Execute command
14 * @v command Command name
20 #define execl( command, arg, ... ) ( { \
22 int rc = execv ( (command), argv ); \
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dprocess.c50 CRpid crSpawn( const char *command, const char *argv[] ) argument
58 (void) command;
82 int err = execvp(command, (char * const *) argv);
111 char command[1000]; local
116 if (!GetModuleFileName( NULL, command, maxLen ))
123 if (crStrstr(command, "\\")) {
124 crStrncpy(name, command+c+1, maxLen);
125 command[c] = 32;
140 char *tmp, command[1000];
152 snprintf(command, sizeo
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/hci/
H A Dshell.c27 #include <ipxe/command.h>
33 * Minimal command shell
41 * "help" command
48 struct command *command; local
52 for_each_table_entry ( command, COMMANDS ) {
53 hpos += printf ( " %s", command->name );
64 printf ( "\n\nType \"<command> --help\" for further information\n\n" );
68 /** "help" command */
69 struct command help_comman
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/hci/commands/
H A Dreboot_cmd.c20 #include <ipxe/command.h>
27 * Reboot command
37 /** "reboot" command descriptor */
42 * The "reboot" command
62 /** "reboot" command */
63 struct command reboot_command __command = {
H A Dpxe_cmd.c20 #include <ipxe/command.h>
33 /** "startpxe" command descriptor */
53 * The "startpxe" command
69 /** "stoppxe" command descriptor */
74 * The "stoppxe" command
94 struct command pxe_commands[] __command = {
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/
H A Dautoboot_cmd.c21 #include <ipxe/command.h>
35 /** "autoboot" command descriptor */
41 * "autoboot" command
52 struct command autoboot_commands[] __command = {
H A Dlogin_cmd.c21 #include <ipxe/command.h>
39 /** "login" command descriptor */
44 * "login" command
69 struct command login_command __command = {
H A Droute_cmd.c23 #include <ipxe/command.h>
39 /** "route" command descriptor */
44 * The "route" command
64 struct command route_commands[] __command = {
H A Dconfig_cmd.c23 #include <ipxe/command.h>
42 /** "config" command descriptor */
69 * "config" command
99 struct command config_command __command = {
H A Dgdbstub_cmd.c25 #include <ipxe/command.h>
31 * GDB stub command
65 /** "gdbstub" command descriptor */
71 * The "gdbstub" command
105 struct command gdbstub_commands[] __command = {
H A Diwmgmt_cmd.c23 #include <ipxe/command.h>
34 /** "iwstat" command descriptor */
55 * The "iwstat" command
65 /** "iwlist" command descriptor */
86 * The "iwlist" command
97 struct command iwmgmt_commands[] __command = {
H A Dtime_cmd.c18 * March-19-2009 @ 02:44: Added sleep command.
28 #include <ipxe/command.h>
44 /** "time" command descriptor */
47 "<command>" );
50 * "time" command
75 /** "time" command */
76 struct command time_command __command = {
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Dpcibios.c58 * @v command PCI BIOS command
62 int pcibios_read ( struct pci_device *pci, uint32_t command, uint32_t *value ){ argument
75 : "a" ( command >> 16 ), "D" ( command ),
86 * @v command PCI BIOS command
90 int pcibios_write ( struct pci_device *pci, uint32_t command, uint32_t value ){ argument
101 : "a" ( command >> 16 ), "D" ( command ),
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dexec.c31 #include <ipxe/command.h>
50 * Execute command
52 * @v command Command name
56 * Execute the named command. Unlike a traditional POSIX execv(),
57 * this function returns the exit status of the command.
59 int execv ( const char *command, char * const argv[] ) { argument
60 struct command *cmd;
66 /* An empty command is deemed to do nothing, successfully */
67 if ( command == NULL )
72 DBG ( "%s: empty argument list\n", command );
104 split_command( char *command, char **tokens ) argument
[all...]
/vbox/src/VBox/Installer/linux/testcase/
H A DtstInstallerLinux.sh77 command="$1"
79 case "$command" in
85 echo Unknown command $command >&2; exit 1;;
117 command="install_device_node_setup vboxusers 0660 /opt/VirtualBox vboxusb"
118 err="`${command} 2>&1`"
120 echo "${command} failed."
129 command="install_device_node_setup vboxusers 0660 /opt/VirtualBox vboxusb"
130 err="`${command} 2>&1`"
132 echo "${command} faile
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/nvs/
H A Dspi.c33 * Munge SPI device address into command
35 * @v command SPI command
38 * @ret command Actual SPI command to use
41 * of the command byte as address bit A8, rather than having a
43 * appropriate command.
45 static inline unsigned int spi_command ( unsigned int command, argument
48 return ( command | ( ( ( address >> 8 ) & munge_address ) << 3 ) );
88 unsigned int command local
115 unsigned int command = spi_command ( SPI_WRITE, address, local
[all...]
/vbox/src/VBox/Devices/Graphics/vmsvga/
H A Dsvga_escape.h37 * Namespace IDs for the escape command
48 * minor command number, respectively.
50 * Major command number allocation:
82 uint32_t command; member in struct:__anon14796
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/block/
H A Dscsi.c38 /** Maximum number of command retries */
77 __einfo_uniqify ( EINFO_EIO, 0x0b, "Aborted command" )
142 * Issue SCSI command
146 * @v command SCSI command
150 struct scsi_cmd *command ) {
158 tap = op ( object, data, command );
160 /* Default is to fail to issue the command */
171 * @v interface SCSI command interface
227 /** A SCSI command */
382 struct scsi_cmd command; local
[all...]
H A Data.c47 * Issue ATA command
51 * @v command ATA command
55 struct ata_cmd *command ) {
63 tag = op ( object, data, command );
65 /* Default is to fail to issue the command */
103 /** An ATA command */
126 /** An ATA command type */
139 * @v atacmd ATA command
152 * @v atacmd ATA command
455 struct ata_cmd command; local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Daoe.c72 /** ATA command issuing interface */
85 /** Configuration command interface */
91 /** An AoE command */
100 /** ATA command interface */
103 /** ATA command */
104 struct ata_cmd command; member in struct:aoe_command
114 /** An AoE command type */
117 * Calculate length of AoE command IU
119 * @v aoecmd AoE command
120 * @ret len Length of command I
375 struct ata_cmd *command = &aoecmd->command; local
391 struct ata_cmd *command = &aoecmd->command; local
439 struct ata_cmd *command = &aoecmd->command; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprtrace.h137 ** PRTraceOption -- command operands to
315 ** command and value, attributes of the Trace Facility may be
319 ** command: An enumerated value in the set of PRTraceOption.
321 ** dependent on command; for each value of command, the type
378 #define PR_SET_TRACE_OPTION(command,value)\
379 PR_SetTraceOption((command),(value))
381 #define PR_SET_TRACE_OPTION(command,value)
386 PRTraceOption command, /* One of the enumerated values */
387 void *value /* command valu
[all...]

Completed in 582 milliseconds

1234567