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

1234567891011

/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/
H A Dlastwords12 # USAGE: lastwords command
53 USAGE: lastwords command
64 command=$1
66 print "Tracing... Waiting for $command to exit..."
90 ' "$command"
H A Dsh_wasted.d54 sh$target:::command-entry
56 self->command = timestamp;
59 sh$target:::command-return
61 this->elapsed = timestamp - self->command;
66 sh$target:::command-return
67 /self->command && !isbuiltin[this->cmd]/
70 self->command = 0;
73 sh$target:::command-return
74 /self->command/
78 self->command
[all...]
H A Dsh_calldist.d92 sh*:::command-entry
94 self->command = timestamp;
97 sh*:::command-return
98 /self->command/
100 this->elapsed = timestamp - self->command;
101 self->command = 0;
H A Dsh_syscalls.d51 sh$target:::command-entry
67 sh$target:::command-entry
H A Dsh_calltime.d95 sh*:::command-entry
97 self->command = timestamp;
100 sh*:::command-return
101 /self->command/
103 this->elapsed = timestamp - self->command;
104 self->command = 0;
H A Dsh_cpudist.d92 sh*:::command-entry
98 sh*:::command-return
107 * sh*:::command-entry has, which means we can't predicate this
110 self->command = vtimestamp;
116 self->command = 0;
122 this->oncpu = vtimestamp - self->command;
123 self->command = 0;
H A Dsh_cputime.d95 sh*:::command-entry
101 sh*:::command-return
110 * sh*:::command-entry has, which means we can't predicate this
113 self->command = vtimestamp;
119 self->command = 0;
125 this->oncpu = vtimestamp - self->command;
126 self->command = 0;
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Proc/
H A Dlastwords12 # USAGE: lastwords command
53 USAGE: lastwords command
64 command=$1
66 print "Tracing... Waiting for $command to exit..."
90 ' "$command"
/osnet-11/usr/src/lib/storage/libg_fc/common/
H A Dcmd.c117 * Execute a command and determine the result.
120 cmd(int file, struct uscsi_cmd *command, int flag) argument
132 command->uscsi_flags = USCSI_RQENABLE;
133 command->uscsi_flags |= flag;
138 /* print command for debug */
140 if ((command->uscsi_cdb == NULL) ||
152 "SCSI command: %s\n",
153 g_scsi_find_command_name(command->uscsi_cdb[0]));
155 for (i = 0; i < (int)command->uscsi_cdblen; i++) {
156 (void) printf("%x ", *(command
[all...]
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Shell/
H A Dsh_wasted.d54 sh$target:::command-entry
56 self->command = timestamp;
59 sh$target:::command-return
61 this->elapsed = timestamp - self->command;
66 sh$target:::command-return
67 /self->command && !isbuiltin[this->cmd]/
70 self->command = 0;
73 sh$target:::command-return
74 /self->command/
78 self->command
[all...]
H A Dsh_calldist.d92 sh*:::command-entry
94 self->command = timestamp;
97 sh*:::command-return
98 /self->command/
100 this->elapsed = timestamp - self->command;
101 self->command = 0;
H A Dsh_syscalls.d51 sh$target:::command-entry
67 sh$target:::command-entry
H A Dsh_calltime.d95 sh*:::command-entry
97 self->command = timestamp;
100 sh*:::command-return
101 /self->command/
103 this->elapsed = timestamp - self->command;
104 self->command = 0;
H A Dsh_cpudist.d92 sh*:::command-entry
98 sh*:::command-return
107 * sh*:::command-entry has, which means we can't predicate this
110 self->command = vtimestamp;
116 self->command = 0;
122 this->oncpu = vtimestamp - self->command;
123 self->command = 0;
H A Dsh_cputime.d95 sh*:::command-entry
101 sh*:::command-return
110 * sh*:::command-entry has, which means we can't predicate this
113 self->command = vtimestamp;
119 self->command = 0;
125 this->oncpu = vtimestamp - self->command;
126 self->command = 0;
/osnet-11/usr/src/lib/libwrap/
H A Dshell_cmd.c9 * shell_cmd() takes a shell command after %<character> substitutions. The
10 * command is executed by a /bin/sh child process, with standard input,
45 /* shell_cmd - execute shell command */
47 void shell_cmd(command)
48 char *command;
63 do_child(command);
71 /* do_child - exec command with { stdin, stdout, stderr } to /dev/null */
73 static void do_child(command)
74 char *command;
86 /* Set up new stdin, stdout, stderr, and exec the shell command
[all...]
/osnet-11/usr/src/tools/onbld/Checks/
H A DProcessCheck.py30 # Wrap a command-line check tool in a pythonic API
36 def processcheck(command, args, inpt, output):
37 '''Run a checking command, command, with arguments as args.
42 (you must close it), containing output from the command.'''
49 tmpfile = tempfile.TemporaryFile(prefix=command)
55 p = subprocess.Popen([command] + args,
59 output.write("Could not execute %s: %s\n" % (command, e))
/osnet-11/usr/src/lib/libast/common/path/
H A Dpathprog.c28 * command!=0 is used as a default
41 prog(const char* command, char* path, size_t size) argument
96 if (command)
98 if ((n = strlen(command) + 1) <= size)
99 memcpy(path, command, n);
106 pathprog(const char* command, char* path, size_t size) argument
111 if ((n = prog(command, path, size)) > 0 && n < size && *path != '/' && (rel = strdup(path)))
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Ddotsh.pl36 local($tmp,$key,$shell,$command,$args,$vars) = '';
41 $command = shift (@dotsh);
44 open (_SH_ENV, "$command") || die "Could not open $dotsh!\n";
57 open (_SH_ENV, "$shell \"$vars && . $command $args && set \" |") || die;
59 open (_SH_ENV, "$shell \". $command $args && set \" |") || die;
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dhalt.c1 /* halt.c - command to halt the computer. */
21 #include <grub/command.h>
41 0, N_("Halts the computer. This command does"
H A Dreboot.c1 /* reboot.c - command to reboot the computer. */
21 #include <grub/command.h>
/osnet-11/usr/src/lib/libplot/t300s/common/
H A Dline.c43 char chx, chy, command; local
49 command = COM|((xd < 0) << 1)|(yd < 0);
58 spew(command);
H A Dsubr.c139 char c, addr, command; local
145 command = COM|PENUP|((dx < 0) << 1)|(dy < 0);
152 c = command|DOUBLE;
173 c = command|DOUBLE;
196 spew(command);
202 spew(command);
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dahci.c50 grub_uint8_t command[0x10]; member in struct:grub_ahci_cmd_table
61 grub_uint32_t command; member in struct:grub_ahci_hba_port
185 dev->hba->ports[dev->port].command &= ~GRUB_AHCI_HBA_PORT_CMD_FRE;
187 while ((dev->hba->ports[dev->port].command & GRUB_AHCI_HBA_PORT_CMD_FR))
194 dev->hba->ports[dev->port].command &= ~GRUB_AHCI_HBA_PORT_CMD_ST;
196 while ((dev->hba->ports[dev->port].command & GRUB_AHCI_HBA_PORT_CMD_CR))
212 dev->hba->ports[dev->port].command |= GRUB_AHCI_HBA_PORT_CMD_FRE;
213 while (!(dev->hba->ports[dev->port].command & GRUB_AHCI_HBA_PORT_CMD_FR))
217 dev->hba->ports[dev->port].command &= ~GRUB_AHCI_HBA_PORT_CMD_FRE;
220 dev->hba->ports[dev->port].command |
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/commands/arc/
H A Dlsdev.c21 #include <grub/command.h>

Completed in 87 milliseconds

1234567891011