| /onnv-gate/usr/src/cmd/dtrace/test/tst/common/funcs/ |
| H A D | tst.index.d | 36 } command[int]; variable 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[i].str = "foobar"; [all …]
|
| H A D | tst.substr.d | 37 } command[int]; variable 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[i].index = 1; [all …]
|
| H A D | tst.strtok.d | 91 } command[int]; variable 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[i].s2 = "o"; 109 command[i].result = "f"; [all …]
|
| /onnv-gate/usr/src/lib/storage/libg_fc/common/ |
| H A D | cmd.c | 120 cmd(int file, struct uscsi_cmd *command, int flag) in cmd() argument 132 command->uscsi_flags = USCSI_RQENABLE; in cmd() 133 command->uscsi_flags |= flag; in cmd() 140 if ((command->uscsi_cdb == NULL) || in cmd() 153 g_scsi_find_command_name(command->uscsi_cdb[0])); in cmd() 155 for (i = 0; i < (int)command->uscsi_cdblen; i++) { in cmd() 156 (void) printf("%x ", *(command->uscsi_cdb + i)); in cmd() 160 command->uscsi_cdblen, in cmd() 161 command->uscsi_bufaddr, in cmd() 162 command->uscsi_buflen, command->uscsi_flags); in cmd() [all …]
|
| /onnv-gate/usr/src/cmd/lms/heci/ |
| H A D | PTHICommand.cpp | 55 AMT_STATUS PTHICommand::_call(const unsigned char *command, UINT32 command_size, UINT8 **readBuffer… in _call() argument 68 int bytesWritten = PTHIClient.SendMessage(command, command_size, m_sendTimeout); in _call() 110 const UINT32 command, const PTHI_MESSAGE_HEADER &response_header, in _verifyResponseHeader() argument 119 } else if (response_header.Command.cmd.val != command) { in _verifyResponseHeader() 192 unsigned char command[command_size]; in GetCodeVersions() local 193 memcpy(command, &(GET_CODE_VERSION_HEADER), sizeof(GET_CODE_VERSION_HEADER)); in GetCodeVersions() 195 AMT_STATUS status = _call(command, command_size, &readBuffer, CODE_VERSIONS_RESPONSE, 0); in GetCodeVersions() 231 unsigned char command[command_size]; in GetProvisioningMode() local 232 memcpy(command, &(GET_PROVISIONING_MODE_HEADER), sizeof(GET_PROVISIONING_MODE_HEADER)); in GetProvisioningMode() 234 …AMT_STATUS status = _call(command, command_size, &readBuffer, PROVISIONING_MODE_RESPONSE, sizeof(C… in GetProvisioningMode() [all …]
|
| /onnv-gate/usr/src/cmd/picl/plugins/lib/picld_pluginutil/ |
| H A D | picld_pluginutil.c | 249 free_path(command_t *command) in free_path() argument 251 free(command->pathcmd_name); in free_path() 261 parse_path(char *line, command_t *command) in parse_path() argument 276 command->pathcmd_name = strdup(pathtok); in parse_path() 277 if (command->pathcmd_name == NULL) in parse_path() 287 process_path(command_t *command, picl_nodehdl_t *nodeh) in process_path() argument 291 err = ptree_get_node_by_path(command->pathcmd_name, nodeh); in process_path() 299 free_node(command_t *command) in free_node() argument 301 free(command->nodecmd_nodename); in free_node() 302 free(command->nodecmd_classname); in free_node() [all …]
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/utils/ |
| H A D | perlcc.PL | 229 my $command = "$BinPerl -MO=Bytecode,-H,-o$Output $Input"; 232 my ($output_r, $error_r) = spawnit($command); 299 …my $command = "$BinPerl $taint -MO=$Backend,$addoptions$testsuite$max_line_len$stash,-o$cfile $Inp… 301 vprint 1, "Calling $command"; 303 my ($output_r, $error_r) = spawnit($command); 341 my $command = ExtUtils::Embed::ccopts." -o $Output $cfile "; 342 $command .= " -I".$_ for split /\s+/, opt(I); 343 $command .= " -L".$_ for split /\s+/, opt(L); 345 $command .= " ".ExtUtils::Embed::ldopts("-std", \@mods); 346 $command .= " -lperl"; [all …]
|
| /onnv-gate/usr/src/cmd/dfs.cmds/sharemgr/ |
| H A D | sharemgr_main.c | 61 char *command = NULL; in main() local 74 command = basename(argv[0]); in main() 75 if (strcmp(command, "share") != 0 && strcmp(command, "unshare") != 0) { in main() 89 if (strcmp(command, "sharemgr") == 0) { in main() 90 command = argv[optind]; in main() 120 rval = run_command(command, argc, argv, protocol, handle); in main() 127 run_command(char *command, int argc, char *argv[], char *proto, in run_command() argument 149 cmdvec = sa_lookup(command, proto); in run_command() 151 (void) printf(gettext("command %s not found\n"), command); in run_command()
|
| /onnv-gate/usr/src/cmd/luxadm/ |
| H A D | lux_util.c | 75 static int issue_uscsi_cmd(int file, struct uscsi_cmd *command, int flag); 176 int command; in scsi_find_command_name() member 182 scsi_command_names[0].command = SCMD_TEST_UNIT_READY; in scsi_find_command_name() 185 scsi_command_names[1].command = SCMD_FORMAT; in scsi_find_command_name() 188 scsi_command_names[2].command = SCMD_REASSIGN_BLOCK; in scsi_find_command_name() 191 scsi_command_names[3].command = SCMD_READ; in scsi_find_command_name() 194 scsi_command_names[4].command = SCMD_WRITE; in scsi_find_command_name() 197 scsi_command_names[5].command = SCMD_READ_G1; in scsi_find_command_name() 200 scsi_command_names[6].command = SCMD_WRITE_G1; in scsi_find_command_name() 203 scsi_command_names[7].command = SCMD_MODE_SELECT; in scsi_find_command_name() [all …]
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/ |
| H A D | PlainText.pm | 145 sub command { subroutine 147 my $command = shift; 148 return if $command eq 'pod'; 149 return if ($$self{EXCLUDE} && $command ne 'end'); 151 $command = 'cmd_' . $command; 152 $self->$command (@_); 232 my $command = shift; 234 return '' if ($command eq 'X' || $command eq 'Z'); 237 if ($command eq 'E') { 248 if ($command eq 'S') { [all …]
|
| H A D | Text.pm | 220 sub command { subroutine 222 my $command = shift; 223 return if $command eq 'pod'; 224 return if ($$self{EXCLUDE} && $command ne 'end'); 225 if ($self->can ('cmd_' . $command)) { 226 $command = 'cmd_' . $command; 227 $self->$command (@_); 234 warn qq($file:$line: Unknown command paragraph: =$command$text\n); 277 my ($self, $command, $seq); 278 ($self, $command, $_, $seq) = @_; [all …]
|
| /onnv-gate/usr/src/cmd/ptools/preap/ |
| H A D | preap.c | 45 static char *command; variable 119 command, arg, Pgrab_error(gret)); in reap() 125 command, (int)pid); in reap() 135 "non-defunct ancestor is 'init'\n", command, in reap() 144 command, (int)pid, Pgrab_error(gret)); in reap() 150 "defunct less than %d seconds\n", command, (int)pid, in reap() 156 (void) fprintf(stderr, "%s: cannot examine %d: %s\n", command, in reap() 164 "stopped and may reap status upon restart\n", command, in reap() 177 (void) fprintf(stderr, "%s: failed to stop %d: %s", command, in reap() 185 command, (int)ppid, strerror(errno)); in reap() [all …]
|
| /onnv-gate/usr/src/cmd/ppgsz/ |
| H A D | ppgsz.c | 56 static char *command; variable 132 " sizes\n", command); in getpgsz() 161 command, optarg); in cnvpgsz() 183 command); in usage() 198 if ((command = strrchr(argv[0], '/')) != NULL) in main() 199 command++; in main() 201 command = argv[0]; in main() 264 command, path); in main() 269 "program: %s\n", command, path); in main() 273 "program: %s\n", command, argv[0]); in main() [all …]
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/ |
| H A D | NNTP.pm | 142 && $nntp->command($user,$pass)->response == CMD_OK; 647 sub _ARTICLE { shift->command('ARTICLE',@_)->response == CMD_OK } 648 sub _AUTHINFO { shift->command('AUTHINFO',@_)->response } 649 sub _BODY { shift->command('BODY',@_)->response == CMD_OK } 650 sub _DATE { shift->command('DATE')->response == CMD_INFO } 651 sub _GROUP { shift->command('GROUP',@_)->response == CMD_OK } 652 sub _HEAD { shift->command('HEAD',@_)->response == CMD_OK } 653 sub _HELP { shift->command('HELP',@_)->response == CMD_INFO } 654 sub _IHAVE { shift->command('IHAVE',@_)->response == CMD_MORE } 655 sub _LAST { shift->command('LAST')->response == CMD_OK } [all …]
|
| H A D | FTP.pm | 173 $ftp->command( uc $cmd, @_); 181 $ftp->command("SITE", @_); 287 $ok = $ftp->command("SITE",${*$ftp}{'net_ftp_host'})->response; 290 $ok = $ftp->command("OPEN",${*$ftp}{'net_ftp_host'})->response; 421 $ftp->command(pack("C",$TELNET_DM) . "ABOR"); 1030 $ftp->command($cmd,@_); 1055 $ftp->command($cmd,@_); 1086 sub command subroutine 1091 $ftp->SUPER::command(@_); 1173 sub cmd { shift->command(@_)->response() } [all …]
|
| H A D | POP3.pm | 296 sub _STAT { shift->command('STAT')->response() == CMD_OK } 297 sub _LIST { shift->command('LIST',@_)->response() == CMD_OK } 298 sub _RETR { shift->command('RETR',$_[0])->response() == CMD_OK } 299 sub _DELE { shift->command('DELE',$_[0])->response() == CMD_OK } 300 sub _NOOP { shift->command('NOOP')->response() == CMD_OK } 301 sub _RSET { shift->command('RSET')->response() == CMD_OK } 302 sub _QUIT { shift->command('QUIT')->response() == CMD_OK } 303 sub _TOP { shift->command('TOP', @_)->response() == CMD_OK } 304 sub _UIDL { shift->command('UIDL',@_)->response() == CMD_OK } 305 sub _USER { shift->command('USER',$_[0])->response() == CMD_OK } [all …]
|
| H A D | SMTP.pm | 136 while (($code = $self->command(@cmd)->response()) == CMD_MORE) { 485 sub _EHLO { shift->command("EHLO", @_)->response() == CMD_OK } 486 sub _HELO { shift->command("HELO", @_)->response() == CMD_OK } 487 sub _MAIL { shift->command("MAIL", @_)->response() == CMD_OK } 488 sub _RCPT { shift->command("RCPT", @_)->response() == CMD_OK } 489 sub _SEND { shift->command("SEND", @_)->response() == CMD_OK } 490 sub _SAML { shift->command("SAML", @_)->response() == CMD_OK } 491 sub _SOML { shift->command("SOML", @_)->response() == CMD_OK } 492 sub _VRFY { shift->command("VRFY", @_)->response() == CMD_OK } 493 sub _EXPN { shift->command("EXPN", @_)->response() == CMD_OK } [all …]
|
| /onnv-gate/usr/src/cmd/ptools/prun/ |
| H A D | prun.c | 41 static char *command; variable 50 if ((command = strrchr(argv[0], '/')) != NULL) in main() 51 command++; in main() 53 command = argv[0]; in main() 56 (void) fprintf(stderr, "usage:\t%s pid[/lwps] ...\n", command); in main() 77 command, arg, Pgrab_error(gcode)); in start() 97 command, arg, strerror(errno)); in start() 124 " no matching LWPs found\n", command, arg); in start() 161 command, (int)Pstatus(P)->pr_pid, in lwpstart()
|
| /onnv-gate/usr/src/cmd/ptools/pwdx/ |
| H A D | pwdx.c | 36 static char *command; variable 48 command, arg, Pgrab_error(gcode)); in show_cwd() 57 command, arg, strerror(errno)); in show_cwd() 72 if ((command = strrchr(argv[0], '/')) != NULL) in main() 73 command++; in main() 75 command = argv[0]; in main() 78 (void) fprintf(stderr, "usage:\t%s pid ...\n", command); in main()
|
| /onnv-gate/usr/src/cmd/krb5/kadmin/gui/dataclasses/ |
| H A D | PrintUtil.java | 78 PrintFrame.command = PrintFrame.fileName = null; in reinitialize() 96 static TextField command = null; field in PrintUtil.PrintFrame 127 command.setEditable(true); in PrintFrame() 140 if (command == null) in addLabelsAndFields() 141 command = new TextField("lp" /* NO18N */, 10); in addLabelsAndFields() 143 add(command, gbc); in addLabelsAndFields() 154 command.addActionListener(al); in addLabelsAndFields() 242 dest = command.getText().trim(); in close() 267 private void print(String command) throws IOException { in print() argument 268 Thread printThread = new PrintThread(command); in print() [all …]
|
| /onnv-gate/usr/src/cmd/ptools/pstop/ |
| H A D | pstop.c | 41 static char *command; variable 50 if ((command = strrchr(argv[0], '/')) != NULL) in main() 51 command++; in main() 53 command = argv[0]; in main() 56 (void) fprintf(stderr, "usage:\t%s pid[/lwps] ...\n", command); in main() 77 command, arg, Pgrab_error(gcode)); in stop() 93 " no matching LWPs found\n", command, arg); in stop() 132 command, (int)Pstatus(P)->pr_pid, in lwpstop()
|
| /onnv-gate/usr/src/cmd/prtfru/ |
| H A D | main.c | 38 usage(const char *command) in usage() argument 42 command); in usage() 48 char *command = argv[0], *searchpath = NULL; in main() local 76 usage(command); in main() 86 usage(command); in main() 101 usage(command); in main() 108 usage(command); in main()
|
| /onnv-gate/usr/src/lib/libwrap/ |
| H A D | shell_cmd.c | 47 void shell_cmd(command) in shell_cmd() argument 48 char *command; in shell_cmd() 63 do_child(command); 73 static void do_child(command) in do_child() argument 74 char *command; in do_child() 95 (void) execl("/bin/sh", "sh", "-c", command, (char *) 0);
|
| /onnv-gate/usr/src/cmd/csh/ |
| H A D | sh.parse.c | 28 struct command *syn0(struct wordent *, struct wordent *, int); 29 struct command *syn1(struct wordent *, struct wordent *, int); 30 struct command *syn1a(struct wordent *, struct wordent *, int); 31 struct command *syn1b(struct wordent *, struct wordent *, int); 32 struct command *syn2(struct wordent *, struct wordent *, int); 33 struct command *syn3(struct wordent *, struct wordent *, int); 203 struct command * 226 struct command * 230 struct command *t, *t1; in syn0() 269 t = (struct command *)xcalloc(1, sizeof (*t)); in syn0() [all …]
|
| /onnv-gate/usr/src/cmd/abi/apptracecmd/ |
| H A D | apptrace.c | 63 static char const *command; variable 114 if ((command = strrchr(argv[0], '/')) != NULL) in main() 115 command++; in main() 117 command = argv[0]; in main() 169 usage(command); in main() 219 command, strerror(errno)); in main() 230 command, argv[0], strerror(errno)); in main() 240 command, strerror(errno)); in main() 248 command, wret, pid); in main() 254 command, argv[0], strsignal(WTERMSIG(stat_loc))); in main() [all …]
|