Symbol: command
usr/src/boot/efi/include/IndustryStandard/Tpm20.h
1117
TPML_CCA command;
usr/src/boot/libsa/zfs/zfsimpl.c
1796
char *command;
usr/src/boot/libsa/zfs/zfsimpl.c
1851
command = (char *)be;
usr/src/boot/libsa/zfs/zfsimpl.c
1855
for (int i = 0; command[i] != '\0'; i++) {
usr/src/boot/libsa/zfs/zfsimpl.c
1856
if (iscntrl(command[i])) {
usr/src/boot/libsa/zfs/zfsimpl.c
1867
command);
usr/src/cmd/abi/apptracecmd/apptrace.c
112
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/abi/apptracecmd/apptrace.c
113
command++;
usr/src/cmd/abi/apptracecmd/apptrace.c
115
command = argv[0];
usr/src/cmd/abi/apptracecmd/apptrace.c
167
usage(command);
usr/src/cmd/abi/apptracecmd/apptrace.c
217
command, strerror(errno));
usr/src/cmd/abi/apptracecmd/apptrace.c
228
command, argv[0], strerror(errno));
usr/src/cmd/abi/apptracecmd/apptrace.c
238
command, strerror(errno));
usr/src/cmd/abi/apptracecmd/apptrace.c
246
command, wret, pid);
usr/src/cmd/abi/apptracecmd/apptrace.c
252
command, argv[0], strsignal(WTERMSIG(stat_loc)));
usr/src/cmd/abi/apptracecmd/apptrace.c
287
(void) fprintf(stderr, gettext("%s: malloc failed\n"), command);
usr/src/cmd/abi/apptracecmd/apptrace.c
331
command, strerror(errno));
usr/src/cmd/abi/apptracecmd/apptrace.c
61
static char const *command;
usr/src/cmd/backup/restore/dirs.c
664
if (command == 'i' || command == 'x') {
usr/src/cmd/backup/restore/interactive.c
866
if (command == 'i' && reset_OK)
usr/src/cmd/backup/restore/main.c
183
command = '\0';
usr/src/cmd/backup/restore/main.c
328
if (command != '\0') {
usr/src/cmd/backup/restore/main.c
331
(uchar_t)*cp, (uchar_t)command);
usr/src/cmd/backup/restore/main.c
334
command = *cp;
usr/src/cmd/backup/restore/main.c
358
if (command == '\0') {
usr/src/cmd/backup/restore/main.c
368
switch (command) {
usr/src/cmd/backup/restore/main.c
48
char command = '\0';
usr/src/cmd/backup/restore/restore.c
593
if (command == 'R') {
usr/src/cmd/backup/restore/restore.h
77
extern char command; /* opration being performed */
usr/src/cmd/backup/restore/symtab.c
739
switch (command) {
usr/src/cmd/backup/restore/symtab.c
770
(uchar_t)command);
usr/src/cmd/backup/restore/tape.c
299
if (vflag && command != 't')
usr/src/cmd/backup/restore/tape.c
360
if ((command == 'r') || (command == 'R')) {
usr/src/cmd/backup/restore/tape.c
457
if (command == 'R' || command == 'r' || curfile.action != SKIP) {
usr/src/cmd/beadm/beadm.c
154
const be_command_t *command;
usr/src/cmd/beadm/beadm.c
156
for (command = &be_command_tbl[0]; command->name != NULL; command++)
usr/src/cmd/beadm/beadm.c
157
if (strcmp(command->name, cmdname) == 0)
usr/src/cmd/beadm/beadm.c
158
return (command->func(argc, argv));
usr/src/cmd/bhyve/common/hda_codec.c
853
.command = hda_codec_command,
usr/src/cmd/bhyve/common/pci_hda.c
487
if (!codec->command) {
usr/src/cmd/bhyve/common/pci_hda.c
492
return (codec->command(hci, verb));
usr/src/cmd/bhyve/common/pci_hda.h
77
int (*command)(struct hda_codec_inst *hci, uint32_t cmd_data);
usr/src/cmd/bhyve/common/pci_nvme.c
1227
nvme_opc_delete_io_sq(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1230
uint16_t qid = command->cdw10 & 0xffff;
usr/src/cmd/bhyve/common/pci_nvme.c
1249
nvme_opc_create_io_sq(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1252
if (command->cdw11 & NVME_CMD_CDW11_PC) {
usr/src/cmd/bhyve/common/pci_nvme.c
1253
uint16_t qid = command->cdw10 & 0xffff;
usr/src/cmd/bhyve/common/pci_nvme.c
1267
nsq->size = ONE_BASED((command->cdw10 >> 16) & 0xffff);
usr/src/cmd/bhyve/common/pci_nvme.c
1282
nsq->cqid = (command->cdw11 >> 16) & 0xffff;
usr/src/cmd/bhyve/common/pci_nvme.c
1297
nsq->qpriority = (command->cdw11 >> 1) & 0x03;
usr/src/cmd/bhyve/common/pci_nvme.c
1299
nsq->qbase = vm_map_gpa(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1323
nvme_opc_delete_io_cq(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1326
uint16_t qid = command->cdw10 & 0xffff;
usr/src/cmd/bhyve/common/pci_nvme.c
1354
nvme_opc_create_io_cq(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1358
uint16_t qid = command->cdw10 & 0xffff;
usr/src/cmd/bhyve/common/pci_nvme.c
1361
if ((command->cdw11 & NVME_CMD_CDW11_PC) == 0) {
usr/src/cmd/bhyve/common/pci_nvme.c
1381
ncq->intr_en = (command->cdw11 & NVME_CMD_CDW11_IEN) >> 1;
usr/src/cmd/bhyve/common/pci_nvme.c
1382
ncq->intr_vec = (command->cdw11 >> 16) & 0xffff;
usr/src/cmd/bhyve/common/pci_nvme.c
1390
ncq->size = ONE_BASED((command->cdw10 >> 16) & 0xffff);
usr/src/cmd/bhyve/common/pci_nvme.c
1404
command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1414
nvme_opc_get_log_page(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1427
logpage = command->cdw10 & 0xFF;
usr/src/cmd/bhyve/common/pci_nvme.c
1428
logsize = ((command->cdw11 << 16) | (command->cdw10 >> 16)) + 1;
usr/src/cmd/bhyve/common/pci_nvme.c
1430
logoff = ((uint64_t)(command->cdw13) << 32) | command->cdw12;
usr/src/cmd/bhyve/common/pci_nvme.c
1442
nvme_prp_memcpy(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1443
command->prp2, (uint8_t *)&sc->err_log + logoff,
usr/src/cmd/bhyve/common/pci_nvme.c
1465
nvme_prp_memcpy(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1466
command->prp2, (uint8_t *)&sc->health_log + logoff,
usr/src/cmd/bhyve/common/pci_nvme.c
1477
nvme_prp_memcpy(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1478
command->prp2, (uint8_t *)&sc->fw_log + logoff,
usr/src/cmd/bhyve/common/pci_nvme.c
1489
nvme_prp_memcpy(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1490
command->prp2, (uint8_t *)&sc->ns_log + logoff,
usr/src/cmd/bhyve/common/pci_nvme.c
1507
nvme_opc_identify(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1514
command->cdw10 & 0xFF, command->nsid);
usr/src/cmd/bhyve/common/pci_nvme.c
1519
switch (command->cdw10 & 0xFF) {
usr/src/cmd/bhyve/common/pci_nvme.c
1522
if (command->nsid == NVME_GLOBAL_NAMESPACE_TAG) {
usr/src/cmd/bhyve/common/pci_nvme.c
1527
nvme_prp_memcpy(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1528
command->prp2, (uint8_t *)&sc->nsdata, sizeof(sc->nsdata),
usr/src/cmd/bhyve/common/pci_nvme.c
1532
nvme_prp_memcpy(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1533
command->prp2, (uint8_t *)&sc->ctrldata,
usr/src/cmd/bhyve/common/pci_nvme.c
1538
dest = vm_map_gpa(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1545
if (command->nsid != 1) {
usr/src/cmd/bhyve/common/pci_nvme.c
1550
dest = vm_map_gpa(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1565
dest = vm_map_gpa(sc->nsc_pi->pi_vmctx, command->prp1,
usr/src/cmd/bhyve/common/pci_nvme.c
1571
__func__, command->cdw10 & 0xFF);
usr/src/cmd/bhyve/common/pci_nvme.c
1684
struct nvme_command *command __unused,
usr/src/cmd/bhyve/common/pci_nvme.c
1693
struct nvme_command *command,
usr/src/cmd/bhyve/common/pci_nvme.c
1697
uint32_t cdw11 = command->cdw11;
usr/src/cmd/bhyve/common/pci_nvme.c
1726
struct nvme_command *command,
usr/src/cmd/bhyve/common/pci_nvme.c
1729
if (command->cdw11 & NVME_ASYNC_EVENT_ENDURANCE_GROUP)
usr/src/cmd/bhyve/common/pci_nvme.c
1738
struct nvme_command *command,
usr/src/cmd/bhyve/common/pci_nvme.c
1747
tmpth = command->cdw11 & 0xffff;
usr/src/cmd/bhyve/common/pci_nvme.c
1748
tmpsel = (command->cdw11 >> 16) & 0xf;
usr/src/cmd/bhyve/common/pci_nvme.c
1749
thsel = (command->cdw11 >> 20) & 0x3;
usr/src/cmd/bhyve/common/pci_nvme.c
1786
struct nvme_command *command,
usr/src/cmd/bhyve/common/pci_nvme.c
1798
nqr = command->cdw11 & 0xFFFF;
usr/src/cmd/bhyve/common/pci_nvme.c
1812
nqr = (command->cdw11 >> 16) & 0xFFFF;
usr/src/cmd/bhyve/common/pci_nvme.c
1827
command->cdw11 = NVME_FEATURE_NUM_QUEUES(sc);
usr/src/cmd/bhyve/common/pci_nvme.c
1834
nvme_opc_set_features(struct pci_nvme_softc *sc, struct nvme_command *command,
usr/src/cmd/bhyve/common/pci_nvme.c
1838
uint32_t nsid = command->nsid;
usr/src/cmd/bhyve/common/pci_nvme.c
1839
uint8_t fid = NVMEV(NVME_FEAT_SET_FID, command->cdw10);
usr/src/cmd/bhyve/common/pci_nvme.c
1840
bool sv = NVMEV(NVME_FEAT_SET_SV, command->cdw10);
usr/src/cmd/bhyve/common/pci_nvme.c
1874
feat->set(sc, feat, command, compl);
usr/src/cmd/bhyve/common/pci_nvme.c
1881
DPRINTF("%s: status=%#x cdw11=%#x", __func__, compl->status, command->cdw11);
usr/src/cmd/bhyve/common/pci_nvme.c
1883
feat->cdw11 = command->cdw11;
usr/src/cmd/bhyve/common/pci_nvme.c
1885
(command->cdw11 != 0))
usr/src/cmd/bhyve/common/pci_nvme.c
1896
nvme_opc_get_features(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1900
uint8_t fid = command->cdw10 & 0xFF;
usr/src/cmd/bhyve/common/pci_nvme.c
1901
uint8_t sel = (command->cdw10 >> 8) & 0x7;
usr/src/cmd/bhyve/common/pci_nvme.c
1916
feat->get(sc, feat, command, compl);
usr/src/cmd/bhyve/common/pci_nvme.c
1930
nvme_opc_format_nvm(struct pci_nvme_softc* sc, struct nvme_command* command,
usr/src/cmd/bhyve/common/pci_nvme.c
1936
ses = (command->cdw10 >> 9) & 0x7;
usr/src/cmd/bhyve/common/pci_nvme.c
1943
lbaf = command->cdw10 & 0xf;
usr/src/cmd/bhyve/common/pci_nvme.c
1951
pi = (command->cdw10 >> 5) & 0x7;
usr/src/cmd/bhyve/common/pci_nvme.c
1975
req->opc = command->opc;
usr/src/cmd/bhyve/common/pci_nvme.c
1976
req->cid = command->cid;
usr/src/cmd/bhyve/common/pci_nvme.c
1977
req->nsid = command->nsid;
usr/src/cmd/bhyve/common/pci_nvme.c
1996
nvme_opc_abort(struct pci_nvme_softc *sc __unused, struct nvme_command *command,
usr/src/cmd/bhyve/common/pci_nvme.c
2000
command->cdw10 & 0xFFFF, (command->cdw10 >> 16) & 0xFFFF);
usr/src/cmd/bhyve/common/pci_nvme.c
2011
struct nvme_command* command, struct nvme_completion* compl)
usr/src/cmd/bhyve/common/pci_nvme.c
2014
sc->aer_count, sc->ctrldata.aerl, command->cid);
usr/src/cmd/bhyve/common/pci_nvme.c
2023
if (pci_nvme_aer_add(sc, command->cid)) {
usr/src/cmd/bnu/callers.c
731
char dcname[20], command[BUFSIZ];
usr/src/cmd/bnu/callers.c
751
(void) sprintf(command,"\r\rcall %s\r", dev[D_ARG]);
usr/src/cmd/bnu/callers.c
752
ret = (*Write)(dcr, command, strlen(command));
usr/src/cmd/bnu/security.c
121
copyText(reptr->command, sizeof(reptr->command), NOTAVAIL);
usr/src/cmd/bnu/security.c
428
copyText(scptr->command, sizeof(scptr->command), cmd);
usr/src/cmd/bnu/security.c
452
scptr->command
usr/src/cmd/bnu/security.c
73
char command[BUFSIZ]; /* command name and options */
usr/src/cmd/bnu/uucp.c
490
char command[10+(2*MAXFULLNAME)];
usr/src/cmd/bnu/uucp.c
537
sprintf(command, "cp %s %s", file1, file2);
usr/src/cmd/bnu/uucp.c
538
if ((cfp = popen(command, "r")) == NULL) {
usr/src/cmd/bnu/uustat.c
599
char command[BUFSIZ], uline_u[BUFSIZ], uline_m[BUFSIZ];
usr/src/cmd/bnu/uustat.c
606
strcpy(command, buf + 2);
usr/src/cmd/bnu/uustat.c
623
sprintf(format_tmp,"%s %s", username, command);
usr/src/cmd/bnu/uux.c
539
command = TRUE;
usr/src/cmd/bnu/uux.c
553
if (command && redir == '\0') {
usr/src/cmd/bnu/uux.c
558
command = FALSE;
usr/src/cmd/bnu/uux.c
85
char command = TRUE;
usr/src/cmd/cmd-inet/lib/nwamd/util.c
183
nwamd_start_childv(const char *command, char const * const *argv)
usr/src/cmd/cmd-inet/lib/nwamd/util.c
220
if ((rc = posix_spawnp(&pid, command, NULL, &attr, (char * const *)argv,
usr/src/cmd/cmd-inet/lib/nwamd/util.c
235
nlog(LOG_ERR, "'%s%s' %s with signal %d (%s)", command, vbuf,
usr/src/cmd/cmd-inet/lib/nwamd/util.c
240
nlog(LOG_INFO, "'%s%s' completed normally: %d", command, vbuf,
usr/src/cmd/cmd-inet/usr.bin/ftp/auth.c
203
} else if ((comcode = command("ADAT %s", out_buf))
usr/src/cmd/cmd-inet/usr.bin/ftp/auth.c
219
if (command("AUTH %s", "GSSAPI") != CONTINUE) {
usr/src/cmd/cmd-inet/usr.bin/ftp/auth.c
81
if (command("AUTH %s", "GSSAPI") == CONTINUE) {
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1047
(void) command("CWD %s", argv[1]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1106
(void) command("DELE %s", argv[1]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1143
(void) command("DELE %s", cp);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1191
if (command("RNFR %s", argv[1]) == CONTINUE)
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1192
(void) command("RNTO %s", argv[2]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1376
n = command("USER %s", argv[1]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1383
n = command("PASS %s", argv[2]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
139
if (command("PROT P") == COMPLETE)
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1397
n = command("ACCT %s", argv[3]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1405
(void) command("ACCT %s", argv[3]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1416
(void) command("PWD");
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1440
(void) command("MKD %s", argv[1]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1464
(void) command("RMD %s", argv[1]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1501
if (command("%s", buf) == PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1541
if (command("SITE %s", buf) == PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1556
(void) command(argc == 1 ? "HELP" : "HELP %s", argv[1]);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1588
(void) command("QUIT");
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
162
if (command("SYST") == COMPLETE && overbose) {
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
1682
(void) command("ACCT %s", ap);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
2154
(void) command("CDUP");
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
2308
comret = command("CCC");
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
2358
comret = command("PROT %s", p->p_mode);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
247
comret = command("TYPE %s %s", p->t_mode, p->t_arg);
usr/src/cmd/cmd-inet/usr.bin/ftp/cmds.c
249
comret = command("TYPE %s", p->t_mode);
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1154
command("REST %lld", (longlong_t)restart_point) != CONTINUE) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1158
if (command("%s %s", cmd, remote) != PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1179
if (command("%s", cmd) != PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1511
if (command("EPSV") != COMPLETE) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1548
if (command("PASV") != COMPLETE) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1650
command("PORT %d,%d,%d,%d,%d,%d",
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1666
result = command("EPRT |%d|%s|%d|", 2,
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1674
result = command(
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1877
if (command(ipv4_addr ? "PASV" : "EPSV") != COMPLETE) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1907
if (command(ipv4_addr ? "PORT %s" : "EPRT %s", pasv) != COMPLETE) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1930
if (command("%s %s", cmd, remote) != PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1954
if (command("%s %s", cmd2, local) != PRELIM)
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
1989
if (command("%s %s", cmd2, local) != PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
2066
if (command("%s %s", cmd2, local) != PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
2396
if (command("PBSZ %u", actualbuf) != COMPLETE)
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
389
n = command("USER %s", user);
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
396
n = command("PASS %s", pass);
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
405
n = command("ACCT %s", acct);
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
412
(void) command("ACCT %s", acct);
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
842
if (command("REST %lld", (longlong_t)restart_point)
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
853
if (command("%s %s", cmd, remote) != PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp.c
866
if (command("%s", cmd) != PRELIM) {
usr/src/cmd/cmd-inet/usr.bin/ftp/ftp_var.h
320
extern int command(char *fmt, ...);
usr/src/cmd/cmd-inet/usr.bin/rdist/gram.y
63
| file command
usr/src/cmd/cmd-inet/usr.bin/rdist/gram.y
66
command: NAME EQUAL namelist {
usr/src/cmd/cmd-inet/usr.bin/telnet/externs.h
224
extern void command(int, char *, int);
usr/src/cmd/cmd-inet/usr.bin/telnet/main.c
279
command(1, 0, 0);
usr/src/cmd/cmd-inet/usr.bin/telnet/telnet.c
1981
command(0, "z\n", 2);
usr/src/cmd/cmd-inet/usr.bin/telnet/telnet.c
2025
command(0, "close\n", 6);
usr/src/cmd/cmd-inet/usr.bin/telnet/telnet.c
2030
command(0, "z\n", 2);
usr/src/cmd/cmd-inet/usr.bin/telnet/telnet.c
2034
command(0, (char *)tbp, tcc);
usr/src/cmd/cmd-inet/usr.bin/telnet/telnet.c
2061
command(0, (char *)tbp, tcc);
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
110
static void command(int);
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
270
command(top);
usr/src/cmd/cmd-inet/usr.lib/in.ndpd/main.c
1722
int command;
usr/src/cmd/cmd-inet/usr.lib/in.ndpd/main.c
1725
len = recvfrom(mibsock, &command, sizeof (int), 0,
usr/src/cmd/cmd-inet/usr.lib/in.ndpd/main.c
1728
if (len < sizeof (int) || command != NDPD_SNMP_INFO_REQ) {
usr/src/cmd/cmd-inet/usr.sbin/in.routed/rdisc.c
1435
int command;
usr/src/cmd/cmd-inet/usr.sbin/in.routed/rdisc.c
1443
len = recvfrom(rdisc_mib_sock, &command, sizeof (int), 0,
usr/src/cmd/cmd-inet/usr.sbin/in.routed/rdisc.c
1446
if (len < sizeof (int) || command != RDISC_SNMP_INFO_REQ) {
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4201
char *command;
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4207
if ((command = malloc(len)) == NULL) {
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4211
(void) strlcpy(command, argv[0], len);
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4213
(void) strlcat(command, " ", len);
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4214
(void) strlcat(command, argv[i], len);
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4216
(void) strlcat(command, "\n", len);
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4217
err = string_to_yyin(command);
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
4218
free(command);
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
747
command_usage(int command)
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
749
if (command < CMD_MIN || command > CMD_MAX) {
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg.c
753
helptab[command].cmd_usage);
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg_grammar.y
113
commands: command terminator
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg_grammar.y
123
| command error terminator
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg_grammar.y
144
command: cancel_command
usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/nwamcfg_grammar.y
92
%type <cmd> command
usr/src/cmd/coreadm/coreadm.c
106
command);
usr/src/cmd/coreadm/coreadm.c
112
" %s [ -p pattern ] [ -P content ] [ pid ... ]\n"), command);
usr/src/cmd/coreadm/coreadm.c
120
"exercise the -[GIgied] options\n"), command);
usr/src/cmd/coreadm/coreadm.c
130
command, arg);
usr/src/cmd/coreadm/coreadm.c
153
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/coreadm/coreadm.c
154
command++;
usr/src/cmd/coreadm/coreadm.c
156
command = argv[0];
usr/src/cmd/coreadm/coreadm.c
231
gettext("%s: the -u option must stand alone\n"), command);
usr/src/cmd/coreadm/coreadm.c
238
command);
usr/src/cmd/coreadm/coreadm.c
244
command);
usr/src/cmd/coreadm/coreadm.c
415
gettext("%s: coreadm service not online\n"), command);
usr/src/cmd/coreadm/coreadm.c
452
"%s: Unable to write property '%s': %s"), command,
usr/src/cmd/coreadm/coreadm.c
457
command, scf_strerror(scf_error()));
usr/src/cmd/coreadm/coreadm.c
466
command, COREADM_INST_FMRI, scf_strerror(scf_error()));
usr/src/cmd/coreadm/coreadm.c
632
command);
usr/src/cmd/coreadm/coreadm.c
652
command, prop->pv_prop);
usr/src/cmd/coreadm/coreadm.c
656
command, scf_strerror(scf_error()));
usr/src/cmd/coreadm/coreadm.c
66
static char *command;
usr/src/cmd/csh/sh.c
916
struct command *t;
usr/src/cmd/csh/sh.dol.c
74
Dfix(struct command *t)
usr/src/cmd/csh/sh.exec.c
207
texec(struct command *cmd, tchar *f, tchar **t)
usr/src/cmd/csh/sh.exec.c
313
tconvert(struct command *cmd, tchar *fname, tchar **list)
usr/src/cmd/csh/sh.exec.c
331
execash(tchar **t, struct command *kp)
usr/src/cmd/csh/sh.exec.c
56
void texec(struct command *, tchar *, tchar **);
usr/src/cmd/csh/sh.exec.c
60
static void tconvert(struct command *, tchar *, tchar **);
usr/src/cmd/csh/sh.exec.c
66
doexec(struct command *t)
usr/src/cmd/csh/sh.exp.c
478
struct command faket;
usr/src/cmd/csh/sh.exp.c
483
faket.t_dcar = faket.t_dcdr = faket.t_dspr = (struct command *)0;
usr/src/cmd/csh/sh.exp.c
593
struct command *t;
usr/src/cmd/csh/sh.file.c
523
search2(tchar *word, COMMAND command, int max_word_length)
usr/src/cmd/csh/sh.file.c
562
if (command == LIST) {
usr/src/cmd/csh/sh.file.c
599
if (command == RECOGNIZE && numitems > 0) {
usr/src/cmd/csh/sh.file.c
609
if (command == LIST) {
usr/src/cmd/csh/sh.file.c
718
COMMAND command;
usr/src/cmd/csh/sh.file.c
733
command = RECOGNIZE;
usr/src/cmd/csh/sh.file.c
736
command = LIST;
usr/src/cmd/csh/sh.file.c
742
if (command == LIST)
usr/src/cmd/csh/sh.file.c
755
numitems = search2(word_start, command, space_left);
usr/src/cmd/csh/sh.file.c
767
if (command == LIST) /* Always retype after a LIST */
usr/src/cmd/csh/sh.file.c
785
if (command == RECOGNIZE) {
usr/src/cmd/csh/sh.func.c
135
func(struct command *t, struct biltins *bp)
usr/src/cmd/csh/sh.func.c
342
doif(tchar **v, struct command *kp)
usr/src/cmd/csh/sh.func.c
387
reexecute(struct command *kp)
usr/src/cmd/csh/sh.func.c
669
dorepeat(tchar **v, struct command *kp)
usr/src/cmd/csh/sh.func.c
68
void reexecute(struct command *kp);
usr/src/cmd/csh/sh.func.c
87
isbfunc(struct command *t)
usr/src/cmd/csh/sh.glob.c
757
struct command faket;
usr/src/cmd/csh/sh.glob.c
787
struct command *t;
usr/src/cmd/csh/sh.h
272
struct command *T_dcar; /* Left part of list/pipe */
usr/src/cmd/csh/sh.h
276
struct command *T_dcdr; /* Right part of list/pipe */
usr/src/cmd/csh/sh.h
285
struct command *t_dspr; /* Pointer to ()'d subtree */
usr/src/cmd/csh/sh.h
468
extern struct biltins *isbfunc(struct command *);
usr/src/cmd/csh/sh.h
481
extern struct command *syntax(struct wordent *, struct wordent *, int);
usr/src/cmd/csh/sh.parse.c
201
struct command *
usr/src/cmd/csh/sh.parse.c
224
struct command *
usr/src/cmd/csh/sh.parse.c
228
struct command *t, *t1;
usr/src/cmd/csh/sh.parse.c
26
struct command *syn0(struct wordent *, struct wordent *, int);
usr/src/cmd/csh/sh.parse.c
267
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
27
struct command *syn1(struct wordent *, struct wordent *, int);
usr/src/cmd/csh/sh.parse.c
274
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
28
struct command *syn1a(struct wordent *, struct wordent *, int);
usr/src/cmd/csh/sh.parse.c
29
struct command *syn1b(struct wordent *, struct wordent *, int);
usr/src/cmd/csh/sh.parse.c
292
struct command *
usr/src/cmd/csh/sh.parse.c
296
struct command *t;
usr/src/cmd/csh/sh.parse.c
30
struct command *syn2(struct wordent *, struct wordent *, int);
usr/src/cmd/csh/sh.parse.c
31
struct command *syn3(struct wordent *, struct wordent *, int);
usr/src/cmd/csh/sh.parse.c
318
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
334
struct command *
usr/src/cmd/csh/sh.parse.c
338
struct command *t;
usr/src/cmd/csh/sh.parse.c
359
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
376
struct command *
usr/src/cmd/csh/sh.parse.c
380
struct command *t;
usr/src/cmd/csh/sh.parse.c
400
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
418
struct command *
usr/src/cmd/csh/sh.parse.c
422
struct command *t;
usr/src/cmd/csh/sh.parse.c
443
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
470
struct command *
usr/src/cmd/csh/sh.parse.c
475
struct command *t;
usr/src/cmd/csh/sh.parse.c
545
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
644
freesyn(struct command *t)
usr/src/cmd/csh/sh.proc.c
1187
pfork(struct command *t, int wanttty)
usr/src/cmd/csh/sh.proc.c
39
void padd(struct command *);
usr/src/cmd/csh/sh.proc.c
408
tchar command[PMAXLEN+4];
usr/src/cmd/csh/sh.proc.c
416
palloc(int pid, struct command *t)
usr/src/cmd/csh/sh.proc.c
429
cmdp = command;
usr/src/cmd/csh/sh.proc.c
438
pp->p_command = savestr(command);
usr/src/cmd/csh/sh.proc.c
480
padd(struct command *t)
usr/src/cmd/csh/sh.sem.c
25
void doio(struct command *, int *, int *);
usr/src/cmd/csh/sh.sem.c
35
AnyBquote(struct command *t)
usr/src/cmd/csh/sh.sem.c
408
doio(struct command *t, int *pipein, int *pipeout)
usr/src/cmd/csh/sh.sem.c
52
struct command *t;
usr/src/cmd/dc/dc.c
747
command();
usr/src/cmd/dc/dc.c
759
if (command() == 1)
usr/src/cmd/dfs.cmds/sharectl/sharectl.c
567
run_command(char *command, int argc, char *argv[], sa_handle_t handle)
usr/src/cmd/dfs.cmds/sharectl/sharectl.c
588
cmdvec = sa_lookup(command);
usr/src/cmd/dfs.cmds/sharectl/sharectl.c
59
char *command;
usr/src/cmd/dfs.cmds/sharectl/sharectl.c
590
(void) printf(gettext("command %s not found\n"), command);
usr/src/cmd/dfs.cmds/sharectl/sharectl.c
90
command = argv[optind];
usr/src/cmd/dfs.cmds/sharectl/sharectl.c
91
rval = run_command(command, argc - optind, argv + optind, handle);
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
118
rval = run_command(command, argc, argv, protocol, handle);
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
125
run_command(char *command, int argc, char *argv[], char *proto,
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
147
cmdvec = sa_lookup(command, proto);
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
149
(void) printf(gettext("command %s not found\n"), command);
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
59
char *command = NULL;
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
72
command = basename(argv[0]);
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
73
if (strcmp(command, "share") != 0 && strcmp(command, "unshare") != 0) {
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
87
if (strcmp(command, "sharemgr") == 0) {
usr/src/cmd/dfs.cmds/sharemgr/sharemgr_main.c
88
command = argv[optind];
usr/src/cmd/dtrace/test/tst/common/java_api/src/TestProbeData.java
102
consumer.createProcess(command);
usr/src/cmd/dtrace/test/tst/common/java_api/src/TestProbeData.java
83
String command = args[0];
usr/src/cmd/fm/fminject/common/inj_grammar.y
121
| command {
usr/src/cmd/fm/fminject/common/inj_grammar.y
298
command: cmd_repeatable
usr/src/cmd/fm/fminject/common/inj_grammar.y
71
%type <l_command> command
usr/src/cmd/format/ctlr_scsi.c
113
uchar_t command;
usr/src/cmd/format/ctlr_scsi.c
2990
for (c = scsi_command_names; c->command != SCMD_UNKNOWN; c++)
usr/src/cmd/format/ctlr_scsi.c
2991
if (c->command == cmd)
usr/src/cmd/fruadm/fruadm.c
48
static char *command, *customer_data = NULL, *frupath = NULL, **svcargv;
usr/src/cmd/fruadm/fruadm.c
68
command);
usr/src/cmd/fruadm/fruadm.c
869
command = argv[0];
usr/src/cmd/fs.d/autofs/autod_mount.c
396
command_t *command;
usr/src/cmd/fs.d/autofs/autod_mount.c
401
command = (command_t *)argp;
usr/src/cmd/fs.d/autofs/autod_mount.c
402
if (sizeof (*command) != arg_size) {
usr/src/cmd/fs.d/autofs/autod_mount.c
417
fd = open(command->console ? "/dev/console" : "/dev/null",
usr/src/cmd/fs.d/autofs/autod_mount.c
425
for (i = 0; *command->argv[i]; i++) {
usr/src/cmd/fs.d/autofs/autod_mount.c
426
newargv[i] = strdup(command->argv[i]);
usr/src/cmd/fs.d/autofs/autod_mount.c
429
" of %s: %m", command->argv[i],
usr/src/cmd/fs.d/autofs/autod_mount.c
430
command->file);
usr/src/cmd/fs.d/autofs/autod_mount.c
436
(void) execv(command->file, newargv);
usr/src/cmd/fs.d/autofs/autod_mount.c
438
syslog(LOG_ERR, "exec %s: %m", command->file);
usr/src/cmd/fs.d/autofs/autod_mount.c
471
command->file, strerror(errno));
usr/src/cmd/fs.d/autofs/autod_mount.c
660
command_t command;
usr/src/cmd/fs.d/autofs/autod_mount.c
669
bzero(&command, sizeof (command));
usr/src/cmd/fs.d/autofs/autod_mount.c
678
strlcpy(command.file, path, MAXPATHLEN);
usr/src/cmd/fs.d/autofs/autod_mount.c
679
strlcpy(command.argv[0], path, MAXOPTSLEN);
usr/src/cmd/fs.d/autofs/autod_mount.c
681
strlcpy(command.argv[i-1], newargv[i], MAXOPTSLEN);
usr/src/cmd/fs.d/autofs/autod_mount.c
684
trace_prt(1, " call_fork_exec: %s ", command.file);
usr/src/cmd/fs.d/autofs/autod_mount.c
685
for (i = 0; *command.argv[i]; i++)
usr/src/cmd/fs.d/autofs/autod_mount.c
686
trace_prt(0, "%s ", command.argv[i]);
usr/src/cmd/fs.d/autofs/autod_mount.c
690
command.console = console;
usr/src/cmd/fs.d/autofs/autod_mount.c
692
darg.data_ptr = (char *)&command;
usr/src/cmd/fs.d/autofs/autod_mount.c
693
darg.data_size = sizeof (command);
usr/src/cmd/fs.d/autofs/ns_files.c
630
command_t *command;
usr/src/cmd/fs.d/autofs/ns_files.c
635
command = (command_t *)argp;
usr/src/cmd/fs.d/autofs/ns_files.c
637
if (sizeof (*command) != arg_size) {
usr/src/cmd/fs.d/autofs/ns_files.c
643
rc = read_execout(command->key, &lp, command->file, line, LINESZ);
usr/src/cmd/fs.d/autofs/ns_files.c
656
command->file, strerror(errno));
usr/src/cmd/fs.d/autofs/ns_files.c
663
command_t command;
usr/src/cmd/fs.d/autofs/ns_files.c
667
bzero(&command, sizeof (command));
usr/src/cmd/fs.d/autofs/ns_files.c
668
(void) strlcpy(command.file, fname, MAXPATHLEN);
usr/src/cmd/fs.d/autofs/ns_files.c
669
(void) strlcpy(command.key, key, MAXOPTSLEN);
usr/src/cmd/fs.d/autofs/ns_files.c
673
darg.data_ptr = (char *)&command;
usr/src/cmd/fs.d/autofs/ns_files.c
674
darg.data_size = sizeof (command);
usr/src/cmd/fs.d/nfs/nfsref/nfsref.c
322
char *command, *sl_path, *svc_type;
usr/src/cmd/fs.d/nfs/nfsref/nfsref.c
373
command = argv[optind++];
usr/src/cmd/fs.d/nfs/nfsref/nfsref.c
376
if (strcmp(command, "add") == 0) {
usr/src/cmd/fs.d/nfs/nfsref/nfsref.c
385
} else if (strcmp(command, "remove") == 0) {
usr/src/cmd/fs.d/nfs/nfsref/nfsref.c
389
} else if (strcmp(command, "lookup") == 0) {
usr/src/cmd/fs.d/nfs/nfsref/nfsref.c
398
fprintf(stderr, gettext("Command %s failed: %s\n"), command,
usr/src/cmd/geniconvtbl/itmcomp.c
151
char *command;
usr/src/cmd/geniconvtbl/itmcomp.c
204
command = malloc_vital((sizeof (char)) * (length + 1));
usr/src/cmd/geniconvtbl/itmcomp.c
205
(void) memcpy(command, cmd_line, length);
usr/src/cmd/geniconvtbl/itmcomp.c
206
*(command + length) = '\0';
usr/src/cmd/geniconvtbl/itmcomp.c
207
PERROR(command);
usr/src/cmd/geniconvtbl/itmcomp.c
209
"%2$s on %3$s\n"), cmd_opt.my_name, command,
usr/src/cmd/halt/halt.c
170
direct_init(long command)
usr/src/cmd/halt/halt.c
176
assert(command == PCDSTOP || command == PCRUN);
usr/src/cmd/halt/halt.c
185
if (command == PCDSTOP) {
usr/src/cmd/halt/halt.c
186
if (write(ctlfd, &command, sizeof (long)) == -1) {
usr/src/cmd/halt/halt.c
192
cmds[0] = command;
usr/src/cmd/ipf/tools/ip_fil.c
811
void frsync(command, version, nic, data, ifs)
usr/src/cmd/ipf/tools/ip_fil.c
812
int command, version;
usr/src/cmd/keyserv/update.c
146
_openchild(char *command, FILE **fto, FILE **ffrom)
usr/src/cmd/keyserv/update.c
177
com = malloc((unsigned)strlen(command) + 6);
usr/src/cmd/keyserv/update.c
181
(void) sprintf(com, "exec %s", command);
usr/src/cmd/keyserv/update.c
61
static int _openchild(char *command, FILE **fto, FILE **ffrom);
usr/src/cmd/lastcomm/lc_exacct.c
123
if (command == NULL) {
usr/src/cmd/lastcomm/lc_exacct.c
143
if (argc > index && !ok(argc, argv, index, uid, tty, command))
usr/src/cmd/lastcomm/lc_exacct.c
151
fldsiz(acct, ac_comm), fldsiz(acct, ac_comm), command,
usr/src/cmd/lastcomm/lc_exacct.c
45
ok(int argc, char *argv[], int index, uid_t uid, dev_t tty, char *command)
usr/src/cmd/lastcomm/lc_exacct.c
52
strncmp(command, argv[j], fldsiz(acct, ac_comm)))
usr/src/cmd/lastcomm/lc_exacct.c
61
char *command = NULL;
usr/src/cmd/lastcomm/lc_exacct.c
85
command = curr_obj.eo_item.ei_string;
usr/src/cmd/lp/cmd/lpfilter.c
337
flbuf.command = strdup(strip(p));
usr/src/cmd/lp/cmd/lpfilter.c
446
pf->command = 0;
usr/src/cmd/lp/cmd/lpfilter.c
453
if (!flbuf.command) {
usr/src/cmd/lp/cmd/lpfilter.c
476
ps->command = flbuf.command;
usr/src/cmd/lp/cmd/lpfilter.c
776
(pf->command? pf->command : "")
usr/src/cmd/lp/include/filters.h
119
char * command;
usr/src/cmd/lp/include/filters.h
76
char * command; /* shell command (full path) */
usr/src/cmd/lp/lib/filters/dumpfilters.c
73
if ((p = fw_zDblQte (pf->command)) != NULL) {
usr/src/cmd/lp/lib/filters/dumpfilters.c
79
p = pf->command;
usr/src/cmd/lp/lib/filters/freefilter.c
100
if (pf->command)
usr/src/cmd/lp/lib/filters/freefilter.c
101
Free (pf->command);
usr/src/cmd/lp/lib/filters/freefilter.c
125
if (pf->command)
usr/src/cmd/lp/lib/filters/freefilter.c
126
Free (pf->command);
usr/src/cmd/lp/lib/filters/getfilter.c
82
flbuf.command = (pf->command? Strdup(pf->command) : 0);
usr/src/cmd/lp/lib/filters/insfilter.c
807
if (pf->command) {
usr/src/cmd/lp/lib/filters/insfilter.c
808
ncount = strlen(pf->command);
usr/src/cmd/lp/lib/filters/insfilter.c
810
strcpy (*pp, pf->command);
usr/src/cmd/lp/lib/filters/loadfilters.c
112
pf->command = Strdup(filt[FL_CMD]);
usr/src/cmd/lp/lib/filters/putfilter.c
68
_flbuf.command = (flbufp->command? Strdup(flbufp->command) : 0);
usr/src/cmd/luxadm/lux_util.c
176
int command;
usr/src/cmd/luxadm/lux_util.c
182
scsi_command_names[0].command = SCMD_TEST_UNIT_READY;
usr/src/cmd/luxadm/lux_util.c
185
scsi_command_names[1].command = SCMD_FORMAT;
usr/src/cmd/luxadm/lux_util.c
188
scsi_command_names[2].command = SCMD_REASSIGN_BLOCK;
usr/src/cmd/luxadm/lux_util.c
191
scsi_command_names[3].command = SCMD_READ;
usr/src/cmd/luxadm/lux_util.c
194
scsi_command_names[4].command = SCMD_WRITE;
usr/src/cmd/luxadm/lux_util.c
197
scsi_command_names[5].command = SCMD_READ_G1;
usr/src/cmd/luxadm/lux_util.c
200
scsi_command_names[6].command = SCMD_WRITE_G1;
usr/src/cmd/luxadm/lux_util.c
203
scsi_command_names[7].command = SCMD_MODE_SELECT;
usr/src/cmd/luxadm/lux_util.c
206
scsi_command_names[8].command = SCMD_MODE_SENSE;
usr/src/cmd/luxadm/lux_util.c
209
scsi_command_names[9].command = SCMD_REASSIGN_BLOCK;
usr/src/cmd/luxadm/lux_util.c
212
scsi_command_names[10].command = SCMD_REQUEST_SENSE;
usr/src/cmd/luxadm/lux_util.c
215
scsi_command_names[11].command = SCMD_READ_DEFECT_LIST;
usr/src/cmd/luxadm/lux_util.c
218
scsi_command_names[12].command = SCMD_INQUIRY;
usr/src/cmd/luxadm/lux_util.c
221
scsi_command_names[13].command = SCMD_WRITE_BUFFER;
usr/src/cmd/luxadm/lux_util.c
224
scsi_command_names[14].command = SCMD_READ_BUFFER;
usr/src/cmd/luxadm/lux_util.c
227
scsi_command_names[15].command = SCMD_START_STOP;
usr/src/cmd/luxadm/lux_util.c
230
scsi_command_names[16].command = SCMD_RESERVE;
usr/src/cmd/luxadm/lux_util.c
233
scsi_command_names[17].command = SCMD_RELEASE;
usr/src/cmd/luxadm/lux_util.c
236
scsi_command_names[18].command = SCMD_MODE_SENSE_G1;
usr/src/cmd/luxadm/lux_util.c
239
scsi_command_names[19].command = SCMD_MODE_SELECT_G1;
usr/src/cmd/luxadm/lux_util.c
242
scsi_command_names[20].command = SCMD_READ_CAPACITY;
usr/src/cmd/luxadm/lux_util.c
245
scsi_command_names[21].command = SCMD_SYNC_CACHE;
usr/src/cmd/luxadm/lux_util.c
248
scsi_command_names[22].command = SCMD_READ_DEFECT_LIST;
usr/src/cmd/luxadm/lux_util.c
251
scsi_command_names[23].command = SCMD_GDIAG;
usr/src/cmd/luxadm/lux_util.c
254
scsi_command_names[24].command = SCMD_SDIAG;
usr/src/cmd/luxadm/lux_util.c
257
scsi_command_names[25].command = SCMD_PERS_RESERV_IN;
usr/src/cmd/luxadm/lux_util.c
260
scsi_command_names[26].command = SCMD_PERS_RESERV_OUT;
usr/src/cmd/luxadm/lux_util.c
263
scsi_command_names[27].command = SCMD_LOG_SENSE;
usr/src/cmd/luxadm/lux_util.c
266
scsi_command_names[28].command = SCMD_UNKNOWN;
usr/src/cmd/luxadm/lux_util.c
270
for (c = scsi_command_names; c->command != SCMD_UNKNOWN; c++)
usr/src/cmd/luxadm/lux_util.c
271
if (c->command == cmd)
usr/src/cmd/luxadm/lux_util.c
391
issue_uscsi_cmd(int file, struct uscsi_cmd *command, int flag)
usr/src/cmd/luxadm/lux_util.c
403
command->uscsi_flags = USCSI_RQENABLE;
usr/src/cmd/luxadm/lux_util.c
404
command->uscsi_flags |= flag;
usr/src/cmd/luxadm/lux_util.c
411
if ((command->uscsi_cdb == NULL) ||
usr/src/cmd/luxadm/lux_util.c
424
scsi_find_command_name(command->uscsi_cdb[0]));
usr/src/cmd/luxadm/lux_util.c
426
for (i = 0; i < (int)command->uscsi_cdblen; i++) {
usr/src/cmd/luxadm/lux_util.c
427
(void) printf("%x ", *(command->uscsi_cdb + i));
usr/src/cmd/luxadm/lux_util.c
431
command->uscsi_cdblen,
usr/src/cmd/luxadm/lux_util.c
432
command->uscsi_bufaddr,
usr/src/cmd/luxadm/lux_util.c
433
command->uscsi_buflen, command->uscsi_flags);
usr/src/cmd/luxadm/lux_util.c
435
if ((command->uscsi_buflen > 0) &&
usr/src/cmd/luxadm/lux_util.c
438
(uchar_t *)command->uscsi_bufaddr,
usr/src/cmd/luxadm/lux_util.c
439
MIN(command->uscsi_buflen, 512), HEX_ASCII);
usr/src/cmd/luxadm/lux_util.c
449
if (command->uscsi_timeout == 0) {
usr/src/cmd/luxadm/lux_util.c
450
command->uscsi_timeout = 60;
usr/src/cmd/luxadm/lux_util.c
455
status = ioctl(file, USCSICMD, command);
usr/src/cmd/luxadm/lux_util.c
456
if (status == 0 && command->uscsi_status == 0) {
usr/src/cmd/luxadm/lux_util.c
458
if ((command->uscsi_buflen > 0) &&
usr/src/cmd/luxadm/lux_util.c
461
(uchar_t *)command->uscsi_bufaddr,
usr/src/cmd/luxadm/lux_util.c
462
MIN(command->uscsi_buflen, 512), HEX_ASCII);
usr/src/cmd/luxadm/lux_util.c
467
if ((status != 0) && (command->uscsi_status == 0)) {
usr/src/cmd/luxadm/lux_util.c
481
if ((command->uscsi_rqbuf != NULL) &&
usr/src/cmd/luxadm/lux_util.c
482
(((char)command->uscsi_rqlen - (char)command->uscsi_rqresid) > 0)) {
usr/src/cmd/luxadm/lux_util.c
484
rqbuf = (struct scsi_extended_sense *)command->uscsi_rqbuf;
usr/src/cmd/luxadm/lux_util.c
520
scsi_printerr(command,
usr/src/cmd/luxadm/lux_util.c
521
(struct scsi_extended_sense *)command->uscsi_rqbuf,
usr/src/cmd/luxadm/lux_util.c
522
(command->uscsi_rqlen - command->uscsi_rqresid),
usr/src/cmd/luxadm/lux_util.c
538
switch ((uchar_t)command->uscsi_status & STATUS_MASK) {
usr/src/cmd/luxadm/lux_util.c
600
return (L_SCSI_ERROR | command->uscsi_status);
usr/src/cmd/luxadm/lux_util.c
75
static int issue_uscsi_cmd(int file, struct uscsi_cmd *command, int flag);
usr/src/cmd/mail/cksaved.c
125
(void) snprintf(command, sizeof (command),
usr/src/cmd/mail/cksaved.c
135
systm(command);
usr/src/cmd/mail/cksaved.c
50
char command[512];
usr/src/cmd/mail/cksaved.c
94
(void) snprintf(command, sizeof (command),
usr/src/cmd/mail/mail.h
327
extern int pipletr(int letter, char *command, int cltype);
usr/src/cmd/make/bin/doname.cc
1215
*command = line;
usr/src/cmd/make/bin/doname.cc
1774
Cmd_line rule, cmd_tail, command = NULL;
usr/src/cmd/make/bin/doname.cc
1785
if (command == NULL) {
usr/src/cmd/make/bin/doname.cc
1786
command = cmd_tail = ALLOC(Cmd_line);
usr/src/cmd/make/bin/doname.cc
1793
if (command) {
usr/src/cmd/make/bin/doname.cc
1796
for (rule = command; rule != NULL; rule = rule->next) {
usr/src/cmd/make/bin/doname.cc
1854
for (rule = command; rule != NULL; rule = cmd_tail) {
usr/src/cmd/make/bin/doname.cc
1858
command = NULL;
usr/src/cmd/make/bin/doname.cc
2680
sccs_get(Name target, Property *command)
usr/src/cmd/make/bin/doname.cc
2761
if (command == NULL) {
usr/src/cmd/make/bin/doname.cc
2769
*command = line;
usr/src/cmd/make/bin/doname.cc
298
Property command = NULL;
usr/src/cmd/make/bin/doname.cc
403
command = NULL;
usr/src/cmd/make/bin/doname.cc
497
&command,
usr/src/cmd/make/bin/doname.cc
524
(command == NULL)) {
usr/src/cmd/make/bin/doname.cc
527
&command,
usr/src/cmd/make/bin/doname.cc
562
&command,
usr/src/cmd/make/bin/doname.cc
596
&command,
usr/src/cmd/make/bin/doname.cc
644
&command,
usr/src/cmd/make/bin/doname.cc
667
if ((command == NULL) &&
usr/src/cmd/make/bin/doname.cc
670
result = sccs_get(target, &command);
usr/src/cmd/make/bin/doname.cc
674
if ((command == NULL) &&
usr/src/cmd/make/bin/doname.cc
681
command = line;
usr/src/cmd/make/bin/doname.cc
730
if ((command != NULL) &&
usr/src/cmd/make/bin/doname.cc
731
(command->body.line.command_template != NULL)) {
usr/src/cmd/make/bin/doname.cc
733
result = run_command(command,
usr/src/cmd/make/bin/doname.cc
740
command,
usr/src/cmd/make/bin/doname.cc
822
&command,
usr/src/cmd/make/bin/doname.cc
83
static Boolean check_dependencies(Doname *result, Property line, Boolean do_get, Name target, Name true_target, Boolean doing_subtree, Chain *out_of_date_tail, Property old_locals, Boolean implicit, Property *command, Name less, Boolean rechecking_target, Boolean recheck_conditionals);
usr/src/cmd/make/bin/doname.cc
936
check_dependencies(Doname *result, Property line, Boolean do_get, Name target, Name true_target, Boolean doing_subtree, Chain *out_of_date_tail, Property old_locals, Boolean implicit, Property *command, Name less, Boolean rechecking_target, Boolean recheck_conditionals)
usr/src/cmd/make/bin/doname.cc
95
static Doname sccs_get(Name target, Property *command);
usr/src/cmd/make/bin/dosys.cc
126
command->meta ?
usr/src/cmd/make/bin/dosys.cc
82
dosys(Name command, Boolean ignore_error, Boolean call_make, Boolean silent_error, Boolean always_exec, Name target)
usr/src/cmd/make/bin/dosys.cc
85
int length = command->hash.length;
usr/src/cmd/make/bin/dosys.cc
86
Wstring wcb(command);
usr/src/cmd/make/bin/implicit.cc
1045
*command = line;
usr/src/cmd/make/bin/implicit.cc
111
find_suffix_rule(Name target, Name target_body, Name target_suffix, Property *command, Boolean rechecking)
usr/src/cmd/make/bin/implicit.cc
150
if (command != NULL) {
usr/src/cmd/make/bin/implicit.cc
151
if ((true_target->suffix_scan_done == true) && (*command == NULL)) {
usr/src/cmd/make/bin/implicit.cc
277
if (command != NULL) {
usr/src/cmd/make/bin/implicit.cc
369
if (*command == NULL) {
usr/src/cmd/make/bin/implicit.cc
370
*command = line;
usr/src/cmd/make/bin/implicit.cc
372
if ((source->stat.time > (*command)->body.line.dependency_time) &&
usr/src/cmd/make/bin/implicit.cc
381
time_to_string((*command)->
usr/src/cmd/make/bin/implicit.cc
389
(*command)->body.line.dependency_time =
usr/src/cmd/make/bin/implicit.cc
390
MAX((*command)->body.line.dependency_time,
usr/src/cmd/make/bin/implicit.cc
395
(*command)->body.line.dependency_time);
usr/src/cmd/make/bin/implicit.cc
398
(*command)->body.line.dependency_time);
usr/src/cmd/make/bin/implicit.cc
460
if ((command != NULL) &&
usr/src/cmd/make/bin/implicit.cc
461
((*command) != NULL) &&
usr/src/cmd/make/bin/implicit.cc
462
((*command)->body.line.star == NULL)) {
usr/src/cmd/make/bin/implicit.cc
463
(*command)->body.line.star = target_body;
usr/src/cmd/make/bin/implicit.cc
498
find_ar_suffix_rule(Name target, Name true_target, Property *command, Boolean rechecking)
usr/src/cmd/make/bin/implicit.cc
551
command,
usr/src/cmd/make/bin/implicit.cc
58
extern Doname find_suffix_rule(Name target, Name target_body, Name target_suffix, Property *command, Boolean rechecking);
usr/src/cmd/make/bin/implicit.cc
59
extern Doname find_ar_suffix_rule(Name target, Name true_target, Property *command, Boolean rechecking);
usr/src/cmd/make/bin/implicit.cc
593
find_double_suffix_rule(Name target, Property *command, Boolean rechecking)
usr/src/cmd/make/bin/implicit.cc
60
extern Doname find_double_suffix_rule(Name target, Property *command, Boolean rechecking);
usr/src/cmd/make/bin/implicit.cc
62
extern Doname find_percent_rule(Name target, Property *command, Boolean rechecking);
usr/src/cmd/make/bin/implicit.cc
657
command,
usr/src/cmd/make/bin/implicit.cc
798
find_percent_rule(Name target, Property *command, Boolean rechecking)
usr/src/cmd/make/bin/implicit.cc
990
if (command == NULL) {
usr/src/cmd/make/bin/parallel.cc
1197
if ((line2 = rp->command) == NULL) {
usr/src/cmd/make/bin/parallel.cc
1262
rp->command ? line2->body.line.target->string_mb : rp->target->string_mb);
usr/src/cmd/make/bin/parallel.cc
1274
rp->command ? line2->body.line.target->string_mb : rp->target->string_mb);
usr/src/cmd/make/bin/parallel.cc
1446
rp->command = NULL;
usr/src/cmd/make/bin/parallel.cc
1489
add_running(Name target, Name true_target, Property command, int recursion_level, int auto_count, Name *automatics, Boolean do_get, Boolean implicit)
usr/src/cmd/make/bin/parallel.cc
1498
rp->command = command;
usr/src/cmd/make/bin/parallel.cc
1764
Name command;
usr/src/cmd/make/bin/parallel.cc
1808
command = GETNAME(tmp_wcs_buffer, FIND_LENGTH);
usr/src/cmd/make/bin/parallel.cc
1812
command = GETNAME(wcs_buffer, FIND_LENGTH);
usr/src/cmd/make/bin/parallel.cc
1814
if ((command->hash.length > 0) &&
usr/src/cmd/make/bin/parallel.cc
1816
(void) printf("%s\n", command->string_mb);
usr/src/cmd/make/bin/parallel.cc
1818
result = dosys(command,
usr/src/cmd/make/bin/parallel.cc
1827
(void) printf(gettext("The following command caused the error:\n%s\n"), command->string_mb);
usr/src/cmd/make/bin/read.cc
1288
command = command_tail = ALLOC(Cmd_line);
usr/src/cmd/make/bin/read.cc
1289
command->next = NULL;
usr/src/cmd/make/bin/read.cc
1290
command->command_line = empty_name;
usr/src/cmd/make/bin/read.cc
1291
command->make_refd = false;
usr/src/cmd/make/bin/read.cc
1292
command->ignore_command_dependency = false;
usr/src/cmd/make/bin/read.cc
1293
command->assign = false;
usr/src/cmd/make/bin/read.cc
1294
command->ignore_error = false;
usr/src/cmd/make/bin/read.cc
1295
command->silent = false;
usr/src/cmd/make/bin/read.cc
1819
enter_target_groups_and_dependencies( &target, &depes, command,
usr/src/cmd/make/bin/read.cc
1903
command =
usr/src/cmd/make/bin/read.cc
2080
enter_target_groups_and_dependencies(Name_vector target, Name_vector depes, Cmd_line command, Separator separator, Boolean target_group_seen)
usr/src/cmd/make/bin/read.cc
2112
command);
usr/src/cmd/make/bin/read.cc
2119
depes, command);
usr/src/cmd/make/bin/read.cc
2130
command,
usr/src/cmd/make/bin/read.cc
2142
command,
usr/src/cmd/make/bin/read.cc
477
Cmd_line command;
usr/src/cmd/make/bin/read.cc
64
extern void enter_target_groups_and_dependencies(Name_vector target, Name_vector depes, Cmd_line command, Separator separator, Boolean target_group_seen);
usr/src/cmd/make/bin/read.cc
918
command = command_tail = NULL;
usr/src/cmd/make/bin/read2.cc
1049
print_rule(command);
usr/src/cmd/make/bin/read2.cc
1133
special_reader(Name target, Name_vector depes, Cmd_line command)
usr/src/cmd/make/bin/read2.cc
1183
default_rule = command;
usr/src/cmd/make/bin/read2.cc
1187
print_rule(command);
usr/src/cmd/make/bin/read2.cc
1376
sccs_get_rule = command;
usr/src/cmd/make/bin/read2.cc
1377
sccs_get_org_rule = command;
usr/src/cmd/make/bin/read2.cc
1380
print_rule(command);
usr/src/cmd/make/bin/read2.cc
1389
sccs_get_posix_rule = command;
usr/src/cmd/make/bin/read2.cc
1392
print_rule(command);
usr/src/cmd/make/bin/read2.cc
1401
get_posix_rule = command;
usr/src/cmd/make/bin/read2.cc
1404
print_rule(command);
usr/src/cmd/make/bin/read2.cc
1416
get_rule = command;
usr/src/cmd/make/bin/read2.cc
1417
sccs_get_rule = command;
usr/src/cmd/make/bin/read2.cc
1420
print_rule(command);
usr/src/cmd/make/bin/read2.cc
1655
print_rule(Cmd_line command)
usr/src/cmd/make/bin/read2.cc
1657
for (; command != NULL; command = command->next) {
usr/src/cmd/make/bin/read2.cc
1658
(void) printf("\t%s\n", command->command_line->string_mb);
usr/src/cmd/make/bin/read2.cc
1798
String_rec command;
usr/src/cmd/make/bin/read2.cc
1822
INIT_STRING_FROM_STACK(command, buffer1);
usr/src/cmd/make/bin/read2.cc
1823
expand_value(*value, &command, false);
usr/src/cmd/make/bin/read2.cc
1825
command.text.p = wcb1.get_string() + (*value)->hash.length;
usr/src/cmd/make/bin/read2.cc
1826
command.text.end = command.text.p;
usr/src/cmd/make/bin/read2.cc
1827
command.buffer.start = wcb1.get_string();
usr/src/cmd/make/bin/read2.cc
1828
command.buffer.end = command.text.p;
usr/src/cmd/make/bin/read2.cc
1830
sh_command2string(&command, &destination);
usr/src/cmd/make/bin/read2.cc
571
enter_dependencies(Name target, Chain target_group, Name_vector depes, Cmd_line command, Separator separator)
usr/src/cmd/make/bin/read2.cc
64
static void print_rule(Cmd_line command);
usr/src/cmd/make/bin/read2.cc
747
if (command != NULL) {
usr/src/cmd/make/bin/read2.cc
754
command;
usr/src/cmd/make/bin/read2.cc
757
line->body.line.command_template = command;
usr/src/cmd/make/bin/read2.cc
762
line->body.line.command_template = command;
usr/src/cmd/make/bin/read2.cc
770
for (Cmd_line next, cmd = command; cmd != NULL; cmd = next) {
usr/src/cmd/make/bin/read2.cc
783
if (command != NULL) {
usr/src/cmd/make/bin/read2.cc
789
line->body.line.command_used = command;
usr/src/cmd/make/bin/read2.cc
852
print_rule(command);
usr/src/cmd/make/bin/read2.cc
930
enter_percent(Name target, Chain target_group, Name_vector depes, Cmd_line command)
usr/src/cmd/make/bin/read2.cc
944
result->command_template = command;
usr/src/cmd/make/include/mk/defs.h
118
struct _Property *command;
usr/src/cmd/make/include/mk/defs.h
319
Property command, int recursion_level, int auto_count,
usr/src/cmd/make/include/mk/defs.h
342
extern Doname dosys(Name command, Boolean ignore_error,
usr/src/cmd/make/include/mk/defs.h
350
Name_vector depes, Cmd_line command, Separator separator);
usr/src/cmd/make/include/mk/defs.h
355
Name_vector depes, Cmd_line command);
usr/src/cmd/make/include/mk/defs.h
369
Property *command, Boolean rechecking);
usr/src/cmd/make/include/mk/defs.h
370
extern Doname find_double_suffix_rule(Name target, Property *command,
usr/src/cmd/make/include/mk/defs.h
372
extern Doname find_percent_rule(Name target, Property *command,
usr/src/cmd/make/include/mk/defs.h
377
Name target_suffix, Property *command, Boolean rechecking);
usr/src/cmd/make/include/mk/defs.h
415
Cmd_line command);
usr/src/cmd/make/lib/mksh/dosys.cc
149
doshell(wchar_t *command, Boolean ignore_error, char *stdout_file, char *stderr_file, int nice_prio)
usr/src/cmd/make/lib/mksh/dosys.cc
182
if ((length = wcslen(command)) >= MAXPATHLEN) {
usr/src/cmd/make/lib/mksh/dosys.cc
184
(void) wcstombs(tmp_mbs_buffer, command, (length * MB_LEN_MAX) + 1);
usr/src/cmd/make/lib/mksh/dosys.cc
189
WCSTOMBS(mbs_buffer, command);
usr/src/cmd/make/lib/mksh/dosys.cc
314
doexec(wchar_t *command, Boolean ignore_error, char *stdout_file, char *stderr_file, pathpt vroot_path, int nice_prio)
usr/src/cmd/make/lib/mksh/dosys.cc
333
for (t = command; *t != (int) nul_char; t++) {
usr/src/cmd/make/lib/mksh/dosys.cc
345
if ((length = wcslen(command)) >= MAXPATHLEN) {
usr/src/cmd/make/lib/mksh/dosys.cc
347
(void) wcstombs(tmp_mbs_buffer, command, (length * MB_LEN_MAX) + 1);
usr/src/cmd/make/lib/mksh/dosys.cc
351
WCSTOMBS(mbs_buffer, command);
usr/src/cmd/make/lib/mksh/dosys.cc
361
for (t = command; *t;) {
usr/src/cmd/make/lib/mksh/dosys.cc
364
WCSTOMBS(mbs_buffer, command);
usr/src/cmd/make/lib/mksh/dosys.cc
434
await(Boolean ignore_error, Boolean silent_error, Name target, wchar_t *command, pid_t running_pid, void *xdrs_p, int job_msg_id)
usr/src/cmd/make/lib/mksh/dosys.cc
526
sh_command2string(String command, String destination)
usr/src/cmd/make/lib/mksh/dosys.cc
533
command->text.p = NULL;
usr/src/cmd/make/lib/mksh/dosys.cc
534
WCSTOMBS(mbs_buffer, command->buffer.start);
usr/src/cmd/make/lib/mksh/dosys.cc
536
WCSTOMBS(mbs_buffer, command->buffer.start);
usr/src/cmd/make/lib/mksh/dosys.cc
569
WCSTOMBS(mbs_buffer, command->buffer.start);
usr/src/cmd/mdb/common/mdb/mdb_grammar.y
127
%type <l_dcmd> command
usr/src/cmd/mdb/common/mdb/mdb_grammar.y
222
pipeline: pipeline '|' command { mdb_cmd_create($3, &mdb.m_frame->f_argvec); }
usr/src/cmd/mdb/common/mdb/mdb_grammar.y
223
| command { mdb_cmd_create($1, &mdb.m_frame->f_argvec); }
usr/src/cmd/mdb/common/mdb/mdb_grammar.y
226
command: '?' format_list { $$ = mdb_dcmd_lookup("?"); }
usr/src/cmd/mdb/common/modules/smbsrv/smbsrv.c
1247
rc = dump_func(&sr->command, sr->command.max_bytes,
usr/src/cmd/mdb/common/modules/smbsrv/smbsrv.c
954
struct mbuf_chain command;
usr/src/cmd/more/more.c
224
static off_t command(char *filename, register FILE *f);
usr/src/cmd/more/more.c
349
left = command(NULL, f);
usr/src/cmd/more/more.c
375
left = command (fnames[fnum], f);
usr/src/cmd/more/more.c
548
if ((num_lines = command (NULL, f)) == 0)
usr/src/cmd/nlsadmin/nlsadmin.c
106
char *command;
usr/src/cmd/nlsadmin/nlsadmin.c
1176
old_addsvc(NLPSSVCCODE, laddr, entry.command, entry.comment, entry.modules, entry.id, entry.flags, netspec);
usr/src/cmd/nlsadmin/nlsadmin.c
1218
old_addsvc(TTYSVCCODE, taddr, entry.command, entry.comment, entry.modules, entry.id, entry.flags, netspec);
usr/src/cmd/nlsadmin/nlsadmin.c
1302
entry->command = ptr;
usr/src/cmd/nlsadmin/nlsadmin.c
1303
if ((ptr = strchr(entry->command, '#')) == NULL)
usr/src/cmd/nlsadmin/nlsadmin.c
780
entry.command, (*entry.comment)?entry.comment:"");
usr/src/cmd/pg/pg.c
104
static int command(char *);
usr/src/cmd/pg/pg.c
407
cmd_ret = command(file_name);
usr/src/cmd/pg/pg.c
417
cmd_ret = command(file_name);
usr/src/cmd/pg/pg.c
485
cmd_ret = command((char *)NULL);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1001
command->tablecmd_newtbl = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1002
command->tablecmd_tblh = tblh;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1009
sizeof (picl_prophdl_t), command->tablecmd_tname, NULL, NULL);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1017
command->tablecmd_newtbl = 1;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1018
command->tablecmd_tblh = tblh;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1034
process_row(command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1036
command->rowcmd_index = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1037
command->rowcmd_prophs =
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1038
malloc(command->rowcmd_nproph * sizeof (picl_prophdl_t));
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1040
if (command->rowcmd_prophs == NULL)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1083
parse_verbose(cmdbuf_t *cmds, char *line, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1110
command->verbosecmd_level = verbose_level;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1119
process_verbose(cmdbuf_t *cmds, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1121
cmds->verbose = command->verbosecmd_level;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1129
parse_and_tokenize_line(cmdbuf_t *cmds, char *buf, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1155
err = parse_path(rec, command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1164
err = parse_node(rec, command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1182
err = parse_prop(rec, command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1190
err = parse_refnode(rec, command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1199
err = parse_refprop(rec, command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1212
err = parse_table(rec, command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1247
err = parse_verbose(cmds, rec, command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1255
command->type = id;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1266
command_t command;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1268
(void) memset(&command, 0, sizeof (command_t));
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1269
err = parse_and_tokenize_line(cmds, buf, &command);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1276
if (command.type == TOK_VERSION)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1291
cmds->commands[cmds->count] = command; /* copy */
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1296
if (command.type == TOK_ROW)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
1299
if (command.type == TOK_ENDROW)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
249
free_path(command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
251
free(command->pathcmd_name);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
261
parse_path(char *line, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
276
command->pathcmd_name = strdup(pathtok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
277
if (command->pathcmd_name == NULL)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
287
process_path(command_t *command, picl_nodehdl_t *nodeh)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
291
err = ptree_get_node_by_path(command->pathcmd_name, nodeh);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
299
free_node(command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
301
free(command->nodecmd_nodename);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
302
free(command->nodecmd_classname);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
310
parse_node(char *line, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
336
command->nodecmd_nodename = strdup(nametok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
337
command->nodecmd_classname = strdup(classtok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
338
command->nodecmd_nodeh = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
339
if ((command->nodecmd_nodename == NULL) ||
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
340
(command->nodecmd_classname == NULL))
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
350
process_node(command_t *command, picl_nodehdl_t parh, picl_nodehdl_t *nodeh)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
354
err = ptree_create_and_add_node(parh, command->nodecmd_nodename,
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
355
command->nodecmd_classname, nodeh);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
358
command->nodecmd_nodeh = *nodeh;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
509
free_prop(command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
511
free(command->propcmd_pname);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
512
if (command->propcmd_type != PICL_PTYPE_VOID)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
513
free(command->propcmd_valbuf);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
593
parse_prop(char *line, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
633
command->propcmd_valbuf = NULL;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
634
command->propcmd_pname = strdup(pnametok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
635
if (command->propcmd_pname == NULL)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
637
command->propcmd_type = typetok;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
638
command->propcmd_accessmode = modetok;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
639
command->propcmd_size = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
640
command->propcmd_proph = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
660
command->propcmd_valbuf = valtok;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
669
command->propcmd_valbuf = malloc(sizetok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
670
if (command->propcmd_valbuf == NULL)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
672
err = validate_size_and_cvt_val(command->propcmd_valbuf,
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
675
free(command->propcmd_valbuf);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
680
command->propcmd_pname = strdup(pnametok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
681
if (command->propcmd_pname == NULL)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
683
command->propcmd_type = typetok;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
684
command->propcmd_accessmode = modetok;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
685
command->propcmd_size = sizetok;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
686
command->propcmd_proph = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
694
add_proph_to_row(command_t *command, picl_prophdl_t proph)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
696
if (command->rowcmd_index >= command->rowcmd_nproph)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
698
command->rowcmd_prophs[command->rowcmd_index] = proph;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
699
command->rowcmd_index++;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
708
process_prop(cmdbuf_t *cmds, command_t *command, picl_nodehdl_t nodeh)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
720
command->propcmd_type, command->propcmd_accessmode,
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
721
command->propcmd_size, command->propcmd_pname, NULL,
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
727
err = ptree_create_prop(&propinfo, command->propcmd_valbuf, &proph);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
732
command->propcmd_proph = proph;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
748
free_refnode(command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
750
free(command->refnodecmd_name);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
751
free(command->refnodecmd_class);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
752
free(command->refnodecmd_dstnode);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
762
parse_refnode(char *line, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
803
command->refnodecmd_name = strdup(nodenm);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
804
command->refnodecmd_class = strdup(classnm);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
805
command->refnodecmd_dstnode = strdup(dsttok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
806
command->refnodecmd_nodeh = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
807
if ((command->refnodecmd_name == NULL) ||
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
808
(command->refnodecmd_class == NULL) ||
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
809
(command->refnodecmd_dstnode == NULL))
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
819
process_refnode(command_t *command, picl_nodehdl_t parh)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
825
if ((ptree_get_node_by_path(command->refnodecmd_dstnode,
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
827
err = ptree_create_and_add_node(parh, command->refnodecmd_name,
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
828
command->refnodecmd_class, &nodeh);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
830
command->refnodecmd_nodeh = nodeh;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
842
free_refprop(command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
844
free(command->refpropcmd_pname);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
845
free(command->refpropcmd_dstnode);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
854
parse_refprop(char *line, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
880
command->refpropcmd_pname = strdup(pnametok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
881
command->refpropcmd_dstnode = strdup(dsttok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
882
command->refpropcmd_proph = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
883
if ((command->refpropcmd_pname == NULL) ||
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
884
(command->refpropcmd_dstnode == NULL))
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
894
process_refprop(cmdbuf_t *cmds, command_t *command, picl_nodehdl_t nodeh)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
907
err = ptree_get_node_by_path(command->refpropcmd_dstnode, &dsth);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
916
command->refpropcmd_pname, NULL, NULL);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
926
command->refpropcmd_proph = proph;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
942
free_table(command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
944
if (command->tablecmd_tname)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
945
free(command->tablecmd_tname);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
954
parse_table(char *line, command_t *command)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
970
command->tablecmd_tname = strdup(tnametok);
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
971
if (command->tablecmd_tname == NULL)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
974
command->tablecmd_newtbl = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
975
command->tablecmd_tblh = 0;
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
985
process_table(command_t *command, picl_nodehdl_t nodeh)
usr/src/cmd/picl/plugins/lib/picld_pluginutil/picld_pluginutil.c
993
err = ptree_get_prop_by_name(nodeh, command->tablecmd_tname, &tblh);
usr/src/cmd/picl/plugins/sun4v/lib/snmp/pdu.c
266
vp->name = snmp_oidstr_to_oid(pdu->command,
usr/src/cmd/picl/plugins/sun4v/lib/snmp/pdu.c
406
p = asn_build_sequence(buf, bufsz_p, (uchar_t)pdu->command, 0);
usr/src/cmd/picl/plugins/sun4v/lib/snmp/pdu.c
461
(void) asn_build_sequence(pdu_seq_begin, NULL, (uchar_t)pdu->command,
usr/src/cmd/picl/plugins/sun4v/lib/snmp/pdu.c
562
reply_pdu->command = (int)id;
usr/src/cmd/picl/plugins/sun4v/lib/snmp/pdu.c
82
pdu->command = cmd;
usr/src/cmd/picl/plugins/sun4v/lib/snmp/pdu.h
60
int command;
usr/src/cmd/plimit/plimit.c
100
command = argv[0];
usr/src/cmd/plimit/plimit.c
177
command, arg, Pgrab_error(gret));
usr/src/cmd/plimit/plimit.c
194
command, (int)pid);
usr/src/cmd/plimit/plimit.c
210
command, Pgrab_error(gret), (int)pid);
usr/src/cmd/plimit/plimit.c
482
command, Pstatus(Pr)->pr_pid, strerror(errno));
usr/src/cmd/plimit/plimit.c
504
" %d: %s\n", command, Pstatus(Pr)->pr_pid,
usr/src/cmd/plimit/plimit.c
52
static char *command;
usr/src/cmd/plimit/plimit.c
528
"for pid %d: %s\n", command,
usr/src/cmd/plimit/plimit.c
540
" pid %d: %s\n", command,
usr/src/cmd/plimit/plimit.c
553
command, Pstatus(Pr)->pr_pid, strerror(errno));
usr/src/cmd/plimit/plimit.c
569
command, Pstatus(Pr)->pr_pid);
usr/src/cmd/plimit/plimit.c
576
command, Pstatus(Pr)->pr_pid);
usr/src/cmd/plimit/plimit.c
84
command, command, command);
usr/src/cmd/plimit/plimit.c
97
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/plimit/plimit.c
98
command++;
usr/src/cmd/pools/poolcfg/poolcfg.y
1194
arg_parse(const char *command)
usr/src/cmd/pools/poolcfg/poolcfg.y
1198
if (fwrite(command, strlen(command), 1, yyin) != 1)
usr/src/cmd/pools/poolcfg/poolcfg.y
229
%type <cmd> command
usr/src/cmd/pools/poolcfg/poolcfg.y
241
commands: command
usr/src/cmd/pools/poolcfg/poolcfg.y
247
| commands command
usr/src/cmd/pools/poolcfg/poolcfg.y
253
| command error { YYERROR;};
usr/src/cmd/pools/poolcfg/poolcfg.y
255
command: list_command
usr/src/cmd/ppgsz/ppgsz.c
130
" sizes\n", command);
usr/src/cmd/ppgsz/ppgsz.c
159
command, optarg);
usr/src/cmd/ppgsz/ppgsz.c
181
command);
usr/src/cmd/ppgsz/ppgsz.c
196
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ppgsz/ppgsz.c
197
command++;
usr/src/cmd/ppgsz/ppgsz.c
199
command = argv[0];
usr/src/cmd/ppgsz/ppgsz.c
262
command, path);
usr/src/cmd/ppgsz/ppgsz.c
267
"program: %s\n", command, path);
usr/src/cmd/ppgsz/ppgsz.c
271
"program: %s\n", command, argv[0]);
usr/src/cmd/ppgsz/ppgsz.c
276
"program: %s\n", command, argv[0]);
usr/src/cmd/ppgsz/ppgsz.c
283
"%s: %s\n", command, Pcreate_error(err));
usr/src/cmd/ppgsz/ppgsz.c
291
"failed for program: %s\n", command, argv[0]);
usr/src/cmd/ppgsz/ppgsz.c
307
command, strerror(errno));
usr/src/cmd/ppgsz/ppgsz.c
334
" %s\n", command, arg, Pgrab_error(gret));
usr/src/cmd/ppgsz/ppgsz.c
345
"failed for pid: %d\n", command, (int)pid);
usr/src/cmd/ppgsz/ppgsz.c
356
command, (int)pid, psinfo.pr_psargs);
usr/src/cmd/ppgsz/ppgsz.c
365
command, (int)pid);
usr/src/cmd/ppgsz/ppgsz.c
371
command, Pgrab_error(gret), (int)pid);
usr/src/cmd/ppgsz/ppgsz.c
418
"failed (%s) for pid %d\n", command, suboptstr[i],
usr/src/cmd/ppgsz/ppgsz.c
526
"address: %p\n", command, strerror(errno),
usr/src/cmd/ppgsz/ppgsz.c
54
static char *command;
usr/src/cmd/ppgsz/ppgsz.c
588
command, addr);
usr/src/cmd/ppgsz/ppgsz.c
604
setup_mha(uint_t command, size_t pagesize, int dmodel)
usr/src/cmd/ppgsz/ppgsz.c
608
gmha32.mha_cmd = command;
usr/src/cmd/ppgsz/ppgsz.c
614
gmha.mha_cmd = command;
usr/src/cmd/prtfru/main.c
106
usage(command);
usr/src/cmd/prtfru/main.c
36
usage(const char *command)
usr/src/cmd/prtfru/main.c
40
command);
usr/src/cmd/prtfru/main.c
46
char *command = argv[0], *searchpath = NULL;
usr/src/cmd/prtfru/main.c
74
usage(command);
usr/src/cmd/prtfru/main.c
84
usage(command);
usr/src/cmd/prtfru/main.c
99
usage(command);
usr/src/cmd/ptools/pargs/pargs.c
1059
command, strerror(errno));
usr/src/cmd/ptools/pargs/pargs.c
107
static char *command;
usr/src/cmd/ptools/pargs/pargs.c
1188
(void) fprintf(stderr, "%s: failed to read argv[]\n", command);
usr/src/cmd/ptools/pargs/pargs.c
1212
(void) fprintf(stderr, "%s: failed to read envp[]\n", command);
usr/src/cmd/ptools/pargs/pargs.c
1244
"argument list\n", command);
usr/src/cmd/ptools/pargs/pargs.c
1254
"executable\n", command);
usr/src/cmd/ptools/pargs/pargs.c
1317
command = basename(argv[0]);
usr/src/cmd/ptools/pargs/pargs.c
1319
if (strcmp(command, "penv") == 0)
usr/src/cmd/ptools/pargs/pargs.c
1321
else if (strcmp(command, "pauxv") == 0)
usr/src/cmd/ptools/pargs/pargs.c
1401
" -x: show aux vector entries\n", command);
usr/src/cmd/ptools/pargs/pargs.c
1439
command, arg, Pgrab_error(gret));
usr/src/cmd/ptools/pargs/pargs.c
1469
command, arg, Pgrab_error(gret));
usr/src/cmd/ptools/pargs/pargs.c
1480
"insufficient content\n", command, arg);
usr/src/cmd/ptools/pargs/pargs.c
1494
command, strerror(r));
usr/src/cmd/ptools/pargs/pargs.c
1539
command, strerror(r));
usr/src/cmd/ptools/pargs/pargs.c
1568
command);
usr/src/cmd/ptools/pargs/pargs.c
1572
command);
usr/src/cmd/ptools/pargs/pargs.c
293
command, strerror(errno));
usr/src/cmd/ptools/pargs/pargs.c
465
command, strerror(errno));
usr/src/cmd/ptools/pargs/pargs.c
952
command);
usr/src/cmd/ptools/pargs/pargs.c
955
command);
usr/src/cmd/ptools/pargs/pargs.c
995
command, strerror(errno));
usr/src/cmd/ptools/pcred/pcred.c
175
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/pcred/pcred.c
250
command, command, command);
usr/src/cmd/ptools/pcred/pcred.c
280
command, grnam);
usr/src/cmd/ptools/pcred/pcred.c
304
command, login);
usr/src/cmd/ptools/pcred/pcred.c
322
command, user);
usr/src/cmd/ptools/pcred/pcred.c
342
command);
usr/src/cmd/ptools/pcred/pcred.c
47
static char *command;
usr/src/cmd/ptools/pcred/pcred.c
71
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pcred/pcred.c
72
command++;
usr/src/cmd/ptools/pcred/pcred.c
74
command = argv[0];
usr/src/cmd/ptools/pfiles/pfiles.c
103
command);
usr/src/cmd/ptools/pfiles/pfiles.c
142
command, arg, Pgrab_error(gret));
usr/src/cmd/ptools/pfiles/pfiles.c
150
command, arg, Pgrab_error(gret));
usr/src/cmd/ptools/pfiles/pfiles.c
171
command, (int)pid);
usr/src/cmd/ptools/pfiles/pfiles.c
186
command, Pgrab_error(gret), (int)pid);
usr/src/cmd/ptools/pfiles/pfiles.c
56
static char *command;
usr/src/cmd/ptools/pfiles/pfiles.c
78
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pfiles/pfiles.c
79
command++;
usr/src/cmd/ptools/pfiles/pfiles.c
81
command = argv[0];
usr/src/cmd/ptools/pflags/pflags.c
103
"usage:\t%s [-r] { pid | core }[/lwps] ...\n", command);
usr/src/cmd/ptools/pflags/pflags.c
153
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/pflags/pflags.c
57
static char *command;
usr/src/cmd/ptools/pflags/pflags.c
81
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pflags/pflags.c
82
command++;
usr/src/cmd/ptools/pflags/pflags.c
84
command = argv[0];
usr/src/cmd/ptools/pldd/pldd.c
109
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/pldd/pldd.c
120
"insufficient content\n", command, arg);
usr/src/cmd/ptools/pldd/pldd.c
134
"not be available\n", command);
usr/src/cmd/ptools/pldd/pldd.c
38
static char *command;
usr/src/cmd/ptools/pldd/pldd.c
51
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pldd/pldd.c
52
command++;
usr/src/cmd/ptools/pldd/pldd.c
54
command = argv[0];
usr/src/cmd/ptools/pldd/pldd.c
76
"usage:\t%s [-Fl] { pid | core } ...\n", command);
usr/src/cmd/ptools/pmap/pmap.c
155
static char *command;
usr/src/cmd/ptools/pmap/pmap.c
206
"have been omitted.\n", command);
usr/src/cmd/ptools/pmap/pmap.c
245
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pmap/pmap.c
246
command++;
usr/src/cmd/ptools/pmap/pmap.c
248
command = argv[0];
usr/src/cmd/ptools/pmap/pmap.c
300
command);
usr/src/cmd/ptools/pmap/pmap.c
304
"\t%s -L [-rslF] [-A start[,end]] pid ...\n", command);
usr/src/cmd/ptools/pmap/pmap.c
308
"\t%s -x [-aslF] [-A start[,end]] pid ...\n", command);
usr/src/cmd/ptools/pmap/pmap.c
313
command);
usr/src/cmd/ptools/pmap/pmap.c
384
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/pmap/pmap.c
403
"process\n", command, arg);
usr/src/cmd/ptools/pmap/pmap.c
448
"changing\n", command, arg);
usr/src/cmd/ptools/pmap/pmap.c
457
"process\n", command, arg);
usr/src/cmd/ptools/pmap/pmap.c
480
"available\n", command);
usr/src/cmd/ptools/ppriv/ppriv.c
151
(void) fprintf(stderr, "%s: %s: %s\n", command, argv[0],
usr/src/cmd/ptools/ppriv/ppriv.c
181
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/ppriv/ppriv.c
186
perr(command);
usr/src/cmd/ptools/ppriv/ppriv.c
202
command, arg, (long)sz);
usr/src/cmd/ptools/ppriv/ppriv.c
211
perr(command);
usr/src/cmd/ptools/ppriv/ppriv.c
299
(void) fprintf(stderr, "%s: %s: %s\n", command, s, strerror(errno));
usr/src/cmd/ptools/ppriv/ppriv.c
324
" (report, set or list process privileges)\n", command,
usr/src/cmd/ptools/ppriv/ppriv.c
325
command, command);
usr/src/cmd/ptools/ppriv/ppriv.c
357
command, spec);
usr/src/cmd/ptools/ppriv/ppriv.c
456
command, spec);
usr/src/cmd/ptools/ppriv/ppriv.c
58
static char *command;
usr/src/cmd/ptools/ppriv/ppriv.c
635
" list\n", command, *argv);
usr/src/cmd/ptools/ppriv/ppriv.c
81
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/ppriv/ppriv.c
82
command++;
usr/src/cmd/ptools/ppriv/ppriv.c
84
command = argv[0];
usr/src/cmd/ptools/preap/preap.c
117
command, arg, Pgrab_error(gret));
usr/src/cmd/ptools/preap/preap.c
123
command, (int)pid);
usr/src/cmd/ptools/preap/preap.c
133
"non-defunct ancestor is 'init'\n", command,
usr/src/cmd/ptools/preap/preap.c
142
command, (int)pid, Pgrab_error(gret));
usr/src/cmd/ptools/preap/preap.c
148
"defunct less than %d seconds\n", command, (int)pid,
usr/src/cmd/ptools/preap/preap.c
154
(void) fprintf(stderr, "%s: cannot examine %d: %s\n", command,
usr/src/cmd/ptools/preap/preap.c
162
"stopped and may reap status upon restart\n", command,
usr/src/cmd/ptools/preap/preap.c
175
(void) fprintf(stderr, "%s: failed to stop %d: %s", command,
usr/src/cmd/ptools/preap/preap.c
183
command, (int)ppid, strerror(errno));
usr/src/cmd/ptools/preap/preap.c
219
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/preap/preap.c
220
command++;
usr/src/cmd/ptools/preap/preap.c
222
command = argv[0];
usr/src/cmd/ptools/preap/preap.c
239
(void) fprintf(stderr, "usage: %s pid ...\n", command);
usr/src/cmd/ptools/preap/preap.c
43
static char *command;
usr/src/cmd/ptools/prun/prun.c
122
" no matching LWPs found\n", command, arg);
usr/src/cmd/ptools/prun/prun.c
159
command, (int)Pstatus(P)->pr_pid,
usr/src/cmd/ptools/prun/prun.c
39
static char *command;
usr/src/cmd/ptools/prun/prun.c
48
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/prun/prun.c
49
command++;
usr/src/cmd/ptools/prun/prun.c
51
command = argv[0];
usr/src/cmd/ptools/prun/prun.c
54
(void) fprintf(stderr, "usage:\t%s pid[/lwps] ...\n", command);
usr/src/cmd/ptools/prun/prun.c
75
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/prun/prun.c
95
command, arg, strerror(errno));
usr/src/cmd/ptools/psig/psig.c
104
(void) fprintf(stderr, "usage:\t%s [-n] pid ...\n", command);
usr/src/cmd/ptools/psig/psig.c
194
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/psig/psig.c
215
command, maxsig);
usr/src/cmd/ptools/psig/psig.c
261
command);
usr/src/cmd/ptools/psig/psig.c
268
command, (void *)aharraddr);
usr/src/cmd/ptools/psig/psig.c
50
static char *command;
usr/src/cmd/ptools/psig/psig.c
62
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/psig/psig.c
63
command++;
usr/src/cmd/ptools/psig/psig.c
65
command = argv[0];
usr/src/cmd/ptools/pstack/pstack.c
167
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pstack/pstack.c
168
command++;
usr/src/cmd/ptools/pstack/pstack.c
170
command = argv[0];
usr/src/cmd/ptools/pstack/pstack.c
195
"usage:\t%s [-F] { pid | core }[/lwps] ...\n", command);
usr/src/cmd/ptools/pstack/pstack.c
231
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/pstack/pstack.c
238
"lost control of process\n", command, arg);
usr/src/cmd/ptools/pstack/pstack.c
249
"insufficient content\n", command, arg);
usr/src/cmd/ptools/pstack/pstack.c
265
"not be available\n", command);
usr/src/cmd/ptools/pstack/pstack.c
306
command);
usr/src/cmd/ptools/pstack/pstack.c
52
static char *command;
usr/src/cmd/ptools/pstop/pstop.c
130
command, (int)Pstatus(P)->pr_pid,
usr/src/cmd/ptools/pstop/pstop.c
39
static char *command;
usr/src/cmd/ptools/pstop/pstop.c
48
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pstop/pstop.c
49
command++;
usr/src/cmd/ptools/pstop/pstop.c
51
command = argv[0];
usr/src/cmd/ptools/pstop/pstop.c
54
(void) fprintf(stderr, "usage:\t%s pid[/lwps] ...\n", command);
usr/src/cmd/ptools/pstop/pstop.c
75
command, arg, Pgrab_error(gcode));
usr/src/cmd/ptools/pstop/pstop.c
91
" no matching LWPs found\n", command, arg);
usr/src/cmd/ptools/ptime/ptime.c
124
command);
usr/src/cmd/ptools/ptime/ptime.c
140
command);
usr/src/cmd/ptools/ptime/ptime.c
153
command, argv[0], Pcreate_error(gret));
usr/src/cmd/ptools/ptime/ptime.c
158
"%s\n", command, argv[0], strerror(errno));
usr/src/cmd/ptools/ptime/ptime.c
182
"abnormally by %s\n", command,
usr/src/cmd/ptools/ptime/ptime.c
54
static char *command;
usr/src/cmd/ptools/ptime/ptime.c
74
command, pidstr, Pgrab_error(gret));
usr/src/cmd/ptools/ptime/ptime.c
95
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/ptime/ptime.c
96
command++;
usr/src/cmd/ptools/ptime/ptime.c
98
command = argv[0];
usr/src/cmd/ptools/pwait/pwait.c
136
command, arg);
usr/src/cmd/ptools/pwait/pwait.c
43
static char *command;
usr/src/cmd/ptools/pwait/pwait.c
60
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/ptools/pwait/pwait.c
61
command++;
usr/src/cmd/ptools/pwait/pwait.c
63
command = argv[0];
usr/src/cmd/ptools/pwait/pwait.c
75
(void) fprintf(stderr, "usage:\t%s [-v] pid ...\n", command);
usr/src/cmd/ptools/pwait/pwait.c
91
command);
usr/src/cmd/saf/sacadm.c
115
char *command = NULL; /* argument to -c */
usr/src/cmd/saf/sacadm.c
135
command = optarg;
usr/src/cmd/saf/sacadm.c
136
if (*command != '/') {
usr/src/cmd/saf/sacadm.c
292
if (!sawaflag || !pmtag || !type || !command || (version < 0))
usr/src/cmd/saf/sacadm.c
294
add_pm(pmtag, type, command, version, flags, count, script, comment);
usr/src/cmd/saf/sacadm.c
440
add_pm(tag, type, command, version, flags, count, script, comment)
usr/src/cmd/saf/sacadm.c
443
char *command;
usr/src/cmd/saf/sacadm.c
577
if (strlcpy(buf, command, sizeof (buf)) >= sizeof (buf)) {
usr/src/cmd/saf/sacadm.c
583
(void) strtok(command, " \t");
usr/src/cmd/saf/sacadm.c
590
if (access(command, 0) == 0) {
usr/src/cmd/saf/sacadm.c
591
if (stat(command, &statbuf) < 0) {
usr/src/cmd/saf/sacadm.c
593
(void) fprintf(stderr, "Could not stat <%s>\n", command);
usr/src/cmd/saf/sacadm.c
599
(void) fprintf(stderr, "%s not executable\n", command);
usr/src/cmd/saf/sacadm.c
605
(void) fprintf(stderr, "%s not a regular file\n", command);
usr/src/cmd/saf/sacadm.c
611
(void) fprintf(stderr, "warning - %s does not exist\n", command);
usr/src/cmd/scadm/sparc/mpxu/common/user.c
104
if (admResponse->command != DP_USER_CMD_ADD) {
usr/src/cmd/scadm/sparc/mpxu/common/user.c
161
admMessage->command = DP_USER_CMD_DEL;
usr/src/cmd/scadm/sparc/mpxu/common/user.c
174
if (admResponse->command != DP_USER_CMD_DEL) {
usr/src/cmd/scadm/sparc/mpxu/common/user.c
220
admMessage->command = DP_USER_CMD_SHOW;
usr/src/cmd/scadm/sparc/mpxu/common/user.c
241
if (admResponse->command != DP_USER_CMD_SHOW) {
usr/src/cmd/scadm/sparc/mpxu/common/user.c
275
admMessage->command = DP_USER_CMD_SHOW;
usr/src/cmd/scadm/sparc/mpxu/common/user.c
289
if (admResponse->command != DP_USER_CMD_SHOW) {
usr/src/cmd/scadm/sparc/mpxu/common/user.c
356
admMessage->command = DP_USER_CMD_PASSWORD;
usr/src/cmd/scadm/sparc/mpxu/common/user.c
378
if (admResponse->command != DP_USER_CMD_PASSWORD) {
usr/src/cmd/scadm/sparc/mpxu/common/user.c
513
admMessage->command = DP_USER_CMD_PERM;
usr/src/cmd/scadm/sparc/mpxu/common/user.c
528
if (admResponse->command != DP_USER_CMD_PERM) {
usr/src/cmd/scadm/sparc/mpxu/common/user.c
91
admMessage->command = DP_USER_CMD_ADD;
usr/src/cmd/sendmail/src/milter.c
1912
char command = (char) cmd;
usr/src/cmd/sendmail/src/milter.c
1941
*bp++ = command;
usr/src/cmd/sendmail/src/milter.c
1954
m->mf_name, command, macros[i], exp);
usr/src/cmd/sendmail/src/milter.c
1995
char command = (char) cmd;
usr/src/cmd/sendmail/src/milter.c
2002
m->mf_name, (char) command, (long) sz);
usr/src/cmd/sendmail/src/milter.c
2005
switch (command)
usr/src/cmd/sendmail/src/milter.c
2094
(void) milter_write(m, command, data, sz,
usr/src/cmd/sendmail/src/milter.c
2156
if (command == SMFIC_HELO ||
usr/src/cmd/sendmail/src/milter.c
2157
command == SMFIC_CONNECT)
usr/src/cmd/sendmail/src/milter.c
2169
if (command == SMFIC_MAIL)
usr/src/cmd/sendmail/src/milter.c
2232
char command = (char) cmd;
usr/src/cmd/sendmail/src/milter.c
2238
command, (long) sz);
usr/src/cmd/sendmail/src/milter.c
2260
milter_send_macros(m, macros, command, e);
usr/src/cmd/sendmail/src/milter.c
2285
response = milter_send_command(m, command, data, sz, e, state,
usr/src/cmd/sendmail/src/milter.c
2293
m->mf_name, command, (int) (tn - curtime()));
usr/src/cmd/sendmail/src/milter.c
520
char command = (char) cmd;
usr/src/cmd/sendmail/src/milter.c
536
m->mf_name, (long) len, command);
usr/src/cmd/sendmail/src/milter.c
543
m->mf_name, (long) len, command);
usr/src/cmd/sendmail/src/milter.c
559
m->mf_name, command, (long) len);
usr/src/cmd/sendmail/src/milter.c
563
data[MILTER_LEN_BYTES] = command;
usr/src/cmd/sendmail/src/milter.c
610
m->mf_name, command, (long) i, (long) sl,
usr/src/cmd/sendmail/src/milter.c
615
m->mf_name, command, (long) i, (long) sl,
usr/src/cmd/sendmail/util/mailcompat.c
124
static char command[MAXLINE];
usr/src/cmd/sendmail/util/mailcompat.c
132
snprintf(command, sizeof (command), "/bin/mail -f %s -d %s", from,
usr/src/cmd/sendmail/util/mailcompat.c
134
mail_fp = popen(command, "w");
usr/src/cmd/sgs/demo_rdb/common/gram.y
56
| commands command
usr/src/cmd/sgs/demo_rdb/common/gram.y
58
command: BREAK NEWLINE
usr/src/cmd/sgs/demo_rdb/common/main.c
133
char *command;
usr/src/cmd/sgs/demo_rdb/common/main.c
144
command = argv[0];
usr/src/cmd/sgs/demo_rdb/common/main.c
157
"[executable arguments ...]\n", command);
usr/src/cmd/sgs/demo_rdb/common/main.c
176
perr(command);
usr/src/cmd/sgs/demo_rdb/common/main.c
208
command, procname);
usr/src/cmd/svc/svccfg/svccfg.y
74
commands : command
usr/src/cmd/svc/svccfg/svccfg.y
75
| commands command
usr/src/cmd/svc/svccfg/svccfg.y
77
command : terminator
usr/src/cmd/svr4pkg/pkgscripts/cmdexec.c
130
char command[256];
usr/src/cmd/svr4pkg/pkgscripts/cmdexec.c
136
(void) sprintf(command, "%s -f %s <%s >%s", cmd, input, file, tempout);
usr/src/cmd/svr4pkg/pkgscripts/cmdexec.c
137
if (system(command))
usr/src/cmd/svr4pkg/pkgscripts/cmdexec.c
140
(void) sprintf(command, "cp %s %s", tempout, file);
usr/src/cmd/svr4pkg/pkgscripts/cmdexec.c
141
if (system(command))
usr/src/cmd/tcpd/scaffold.c
162
void shell_cmd(command)
usr/src/cmd/tcpd/scaffold.c
163
char *command;
usr/src/cmd/tcpd/scaffold.c
166
printf("command: %s", command);
usr/src/cmd/th_tools/th_define.c
1457
int command;
usr/src/cmd/th_tools/th_define.c
1459
command = BOFI_GET_HANDLE_INFO;
usr/src/cmd/th_tools/th_define.c
1473
if (ioctl(fd, command, &hdli) == -1) {
usr/src/cmd/th_tools/th_define.c
1489
if (ioctl(fd, command, &hdli) == -1) {
usr/src/cmd/th_tools/th_manage.c
117
command = cmd_table[i].val;
usr/src/cmd/th_tools/th_manage.c
145
if (command == -1) {
usr/src/cmd/th_tools/th_manage.c
187
if (command == BOFI_GET_HANDLES) {
usr/src/cmd/th_tools/th_manage.c
193
if (ioctl(fd, command, &get_handles) == -1) {
usr/src/cmd/th_tools/th_manage.c
248
if (ioctl(fd, command, &errctl) == -1) {
usr/src/cmd/th_tools/th_manage.c
256
if (ioctl(fd, command, &errctl) == -1) {
usr/src/cmd/th_tools/th_manage.c
78
int command = -1;
usr/src/cmd/th_tools/th_manage.c
91
command = cmd_table[i].val;
usr/src/cmd/tip/cmds.c
290
transmit(FILE *fd, char *eofchars, char *command)
usr/src/cmd/tip/cmds.c
308
if (command != NULL) {
usr/src/cmd/tip/cmds.c
309
for (pc = command; *pc; pc++)
usr/src/cmd/truss/ipc.c
126
perror(command);
usr/src/cmd/truss/ipc.c
153
perror(command);
usr/src/cmd/truss/listopts.c
299
command, name);
usr/src/cmd/truss/listopts.c
374
command, name);
usr/src/cmd/truss/listopts.c
451
command, name);
usr/src/cmd/truss/listopts.c
510
command, NOFILES_MAX-1, name);
usr/src/cmd/truss/main.c
1005
"%s: state = %d\n", command, Lstate(Lwp));
usr/src/cmd/truss/main.c
220
command, who, (int)Pstatus(Proc)->pr_pid,
usr/src/cmd/truss/main.c
2246
command, arg, Pgrab_error(i));
usr/src/cmd/truss/main.c
2260
command, (int)pid);
usr/src/cmd/truss/main.c
2445
command, (int)pid, Pgrab_error(rc));
usr/src/cmd/truss/main.c
2503
command, Pgrab_error(gcode), (int)set->pid);
usr/src/cmd/truss/main.c
2590
if (command) {
usr/src/cmd/truss/main.c
2591
(void) strcpy(msg, command);
usr/src/cmd/truss/main.c
287
if ((command = strrchr(argv[0], '/')) != NULL)
usr/src/cmd/truss/main.c
288
command++;
usr/src/cmd/truss/main.c
290
command = argv[0];
usr/src/cmd/truss/main.c
457
command);
usr/src/cmd/truss/main.c
476
command, path);
usr/src/cmd/truss/main.c
482
command, path);
usr/src/cmd/truss/main.c
487
command, argv[0]);
usr/src/cmd/truss/main.c
492
command, argv[0]);
usr/src/cmd/truss/main.c
498
command, Pcreate_error(err));
usr/src/cmd/truss/main.c
632
command, (int)set->pid);
usr/src/cmd/truss/ramdata.c
44
char *command; /* name of command ("truss") */
usr/src/cmd/truss/ramdata.h
128
extern char *command; /* name of command ("truss") */
usr/src/cmd/write/write.c
458
shellcmd(command)
usr/src/cmd/write/write.c
459
char *command;
usr/src/cmd/write/write.c
474
execl("/usr/bin/sh", "sh", "-c", command, 0);
usr/src/cmd/ypcmd/ypupdated/openchild.c
53
_openchild(char *command, FILE **fto, FILE **ffrom)
usr/src/cmd/ypcmd/ypupdated/openchild.c
87
com = malloc((unsigned)strlen(command) + 6);
usr/src/cmd/ypcmd/ypupdated/openchild.c
91
(void) sprintf(com, "exec %s", command);
usr/src/cmd/zfs/zfs_main.c
7262
find_command_idx(char *command, int *idx)
usr/src/cmd/zfs/zfs_main.c
7270
if (strcmp(command, command_table[i].name) == 0) {
usr/src/cmd/zonecfg/zonecfg.c
1541
short_usage(int command)
usr/src/cmd/zonecfg/zonecfg.c
1555
helptab[command].short_usage);
usr/src/cmd/zonecfg/zonecfg.c
7451
char *command;
usr/src/cmd/zonecfg/zonecfg.c
7457
if ((command = malloc(len)) == NULL) {
usr/src/cmd/zonecfg/zonecfg.c
7461
(void) strlcpy(command, argv[0], len);
usr/src/cmd/zonecfg/zonecfg.c
7463
(void) strlcat(command, " ", len);
usr/src/cmd/zonecfg/zonecfg.c
7464
(void) strlcat(command, argv[i], len);
usr/src/cmd/zonecfg/zonecfg.c
7466
(void) strlcat(command, "\n", len);
usr/src/cmd/zonecfg/zonecfg.c
7467
err = string_to_yyin(command);
usr/src/cmd/zonecfg/zonecfg.c
7468
free(command);
usr/src/cmd/zonecfg/zonecfg_grammar.y
150
%type <cmd> command
usr/src/cmd/zonecfg/zonecfg_grammar.y
176
commands: command terminator
usr/src/cmd/zonecfg/zonecfg_grammar.y
188
| command error terminator
usr/src/cmd/zonecfg/zonecfg_grammar.y
213
command: add_command
usr/src/cmd/zpool/zpool_main.c
8426
find_command_idx(char *command, int *idx)
usr/src/cmd/zpool/zpool_main.c
8434
if (strcmp(command, command_table[i].name) == 0) {
usr/src/common/ficl/tools.c
386
ficlString command;
usr/src/common/ficl/tools.c
432
command = ficlVmGetWord(vm);
usr/src/common/ficl/tools.c
434
switch (command.text[0]) {
usr/src/grub/grub-0.97/netboot/eepro100.c
231
s16 command;
usr/src/grub/grub-0.97/netboot/eepro100.c
244
s16 command;
usr/src/grub/grub-0.97/netboot/eepro100.c
265
s16 command;
usr/src/grub/grub-0.97/netboot/eepro100.c
412
txfd.command = CmdSuspend | CmdTx | CmdTxFlex;
usr/src/grub/grub-0.97/netboot/eepro100.c
515
ACCESS(rxfd)command = 0xc000;
usr/src/grub/grub-0.97/netboot/eepro100.c
638
ACCESS(rxfd)command = 0x0000;
usr/src/grub/grub-0.97/netboot/eepro100.c
652
ACCESS(rxfd)command = 0xc000;
usr/src/grub/grub-0.97/netboot/eepro100.c
665
txfd.command = (CmdIASetup);
usr/src/grub/grub-0.97/netboot/eepro100.c
708
confcmd.command = CmdSuspend | CmdConfigure;
usr/src/grub/grub-0.97/netboot/epic100.c
118
command = ioaddr + COMMAND; /* Control Register */
usr/src/grub/grub-0.97/netboot/epic100.c
255
outl(CR_START_RX | CR_QUEUE_RX, command);
usr/src/grub/grub-0.97/netboot/epic100.c
344
outl(CR_QUEUE_TX, command);
usr/src/grub/grub-0.97/netboot/epic100.c
409
outl(CR_START_RX | CR_QUEUE_RX, command);
usr/src/grub/grub-0.97/netboot/epic100.c
64
static int command;
usr/src/grub/grub-0.97/netboot/pnic.c
100
uint16_t status = pnic_command_quiet ( nic, command,
usr/src/grub/grub-0.97/netboot/pnic.c
106
command, input_length, status );
usr/src/grub/grub-0.97/netboot/pnic.c
48
static uint16_t pnic_command_quiet ( struct nic *nic, uint16_t command,
usr/src/grub/grub-0.97/netboot/pnic.c
65
outw ( command, nic->ioaddr + PNIC_REG_CMD );
usr/src/grub/grub-0.97/netboot/pnic.c
73
"returned (expected %d, got %d)\n", command,
usr/src/grub/grub-0.97/netboot/pnic.c
82
"(have %d, need %d)\n", command,
usr/src/grub/grub-0.97/netboot/pnic.c
95
static uint16_t pnic_command ( struct nic *nic, uint16_t command,
usr/src/grub/grub-0.97/stage2/cmdline.c
64
find_command (char *command)
usr/src/grub/grub-0.97/stage2/cmdline.c
71
ptr = command;
usr/src/grub/grub-0.97/stage2/cmdline.c
81
int ret = grub_strcmp (command, (*builtin)->name);
usr/src/grub/grub-0.97/stage2/shared.h
947
struct builtin *find_command (char *command);
usr/src/lib/brand/solaris10/s10_brand/common/s10_brand.c
1526
s10_sysinfo(sysret_t *rv, int command, char *buf, long count)
usr/src/lib/brand/solaris10/s10_brand/common/s10_brand.c
1536
switch (command) {
usr/src/lib/brand/solaris10/s10_brand/common/s10_brand.c
1551
command, buf, count));
usr/src/lib/brand/solaris10/s10_brand/common/s10_brand.c
1571
(void) B_TRUSS_POINT_3(rv, SYS_systeminfo, 0, command, buf, count);
usr/src/lib/libbe/common/be_utils.c
3350
be_run_cmd(char *command, char *stderr_buf, int stderr_bufsize,
usr/src/lib/libbe/common/be_utils.c
3361
if ((command == NULL) || (stderr_buf == NULL) ||
usr/src/lib/libbe/common/be_utils.c
3368
if (snprintf(cmdline, BUFSIZ, "%s 2> %s", command,
usr/src/lib/libc/port/gen/getmntent.c
224
getmntent_common(FILE *fp, struct extmnttab *emp, int command)
usr/src/lib/libc/port/gen/getmntent.c
237
while ((ret = ioctl(fileno(fp), command, &embuf)) == MNTFS_TOOLONG) {
usr/src/lib/libc/port/gen/getmntent.c
254
if (command == MNTIOC_GETMNTENT &&
usr/src/lib/libc/port/gen/getmntent.c
265
if (command == MNTIOC_GETMNTENT)
usr/src/lib/libdevinfo/devinfo.c
1386
if (DINFOMINOR & DI_ALL(pa)->command)
usr/src/lib/libdevinfo/devinfo.c
1826
if (DINFOPROP & DI_ALL(pa)->command)
usr/src/lib/libdevinfo/devinfo.c
1926
if (DINFOPATH & (DI_ALL(pa)->command))
usr/src/lib/libdevinfo/devinfo.c
1968
if (DINFOPATH & (DI_ALL(pa)->command))
usr/src/lib/libdevinfo/devinfo.c
2164
if (DINFOPROP & (DI_ALL(pa)->command))
usr/src/lib/libdevinfo/devinfo.c
2487
if (DI_ALL(pa)->command & DINFOPRIVDATA)
usr/src/lib/libdevinfo/devinfo.c
2518
if (DI_ALL(pa)->command & DINFOPRIVDATA)
usr/src/lib/libdevinfo/devinfo.c
2593
if (!(DI_ALL(pa)->command & DINFOHP)) {
usr/src/lib/libdevinfo/devinfo.c
2644
if (DINFOHP & DI_ALL(pa)->command)
usr/src/lib/libdevinfo/devinfo.c
2782
if (!(DINFOSUBTREE & DI_ALL(pa)->command))
usr/src/lib/libdevinfo/devinfo.c
3474
if (DINFOLYR & DI_ALL(di_all)->command)
usr/src/lib/libdevinfo/devinfo.c
3520
if (DINFOLYR & DI_ALL(di_all)->command)
usr/src/lib/libdevinfo/devinfo.c
373
if (!(DI_ALL(pa)->command & DINFOSUBTREE))
usr/src/lib/libdevinfo/devinfo.c
404
if (!(DI_ALL(pa)->command & DINFOSUBTREE))
usr/src/lib/libdiskmgt/common/drive.c
1414
fill_general_page_cdb_g1(union scsi_cdb *cdb, int command, int lun,
usr/src/lib/libdiskmgt/common/drive.c
1418
cdb->scc_cmd = command;
usr/src/lib/libdiskmgt/common/drive.c
339
int command, int lun, uchar_t c0, uchar_t c1);
usr/src/lib/libdladm/common/libdlwlan.c
1651
char *command = NULL;
usr/src/lib/libdladm/common/libdlwlan.c
1665
command = malloc(size);
usr/src/lib/libdladm/common/libdlwlan.c
1666
if (command == NULL) {
usr/src/lib/libdladm/common/libdlwlan.c
1670
(void) snprintf(command, size, "%s %s", SVC_METHOD, flags);
usr/src/lib/libdladm/common/libdlwlan.c
1677
SCF_TYPE_ASTRING, command, tran) != DLADM_STATUS_OK) {
usr/src/lib/libdladm/common/libdlwlan.c
1707
if (command != NULL)
usr/src/lib/libdladm/common/libdlwlan.c
1708
free(command);
usr/src/lib/libdladm/common/libdlwlan.c
1715
const char *instance_name, const char *command)
usr/src/lib/libdladm/common/libdlwlan.c
1734
command) != DLADM_STATUS_OK) {
usr/src/lib/libdladm/common/libdlwlan.c
1758
create_instance(const char *instance_name, const char *command)
usr/src/lib/libdladm/common/libdlwlan.c
1778
status = do_create_instance(handle, svc, instance_name, command);
usr/src/lib/libdladm/common/libdlwlan.c
1926
char *command = NULL;
usr/src/lib/libdladm/common/libdlwlan.c
1940
command = malloc(size);
usr/src/lib/libdladm/common/libdlwlan.c
1941
if (command == NULL) {
usr/src/lib/libdladm/common/libdlwlan.c
1945
(void) snprintf(command, size, "-i %s -k %s", instance_name, wk_name);
usr/src/lib/libdladm/common/libdlwlan.c
1947
status = create_instance(instance_name, command);
usr/src/lib/libdladm/common/libdlwlan.c
1955
status = create_instance(instance_name, command);
usr/src/lib/libdladm/common/libdlwlan.c
1960
if (command != NULL)
usr/src/lib/libdladm/common/libdlwlan.c
1961
free(command);
usr/src/lib/libdtrace_jni/common/dtj_util.c
1148
dtj_make_argv(JNIEnv *jenv, jstring command, int *argc)
usr/src/lib/libdtrace_jni/common/dtj_util.c
1163
if (!command) {
usr/src/lib/libdtrace_jni/common/dtj_util.c
1166
} else if ((*jenv)->GetStringLength(jenv, command) == 0) {
usr/src/lib/libdtrace_jni/common/dtj_util.c
1171
cmd = dtj_GetStringNativeChars(jenv, command);
usr/src/lib/libdtrace_jni/common/dtj_util.c
1180
dtj_ReleaseStringNativeChars(jenv, command, cmd);
usr/src/lib/libdtrace_jni/common/dtj_util.c
1196
dtj_ReleaseStringNativeChars(jenv, command, cmd);
usr/src/lib/libdtrace_jni/common/dtj_util.c
1207
dtj_ReleaseStringNativeChars(jenv, command, cmd);
usr/src/lib/libdtrace_jni/common/dtj_util.c
1217
dtj_ReleaseStringNativeChars(jenv, command, cmd);
usr/src/lib/libdtrace_jni/common/dtj_util.c
1222
dtj_ReleaseStringNativeChars(jenv, command, cmd);
usr/src/lib/libdtrace_jni/common/dtrace_jni.c
1480
jobject caller, jstring command)
usr/src/lib/libdtrace_jni/common/dtrace_jni.c
1502
argv = dtj_make_argv(jenv, command, &argc);
usr/src/lib/libdtrace_jni/java/docs/examples/TestTarget.java
42
String command = args[1];
usr/src/lib/libdtrace_jni/java/docs/examples/TestTarget.java
72
consumer.createProcess(command);
usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/Consumer.java
592
public int createProcess(String command) throws DTraceException;
usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/LocalConsumer.java
1030
createProcess(String command) throws DTraceException
usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/LocalConsumer.java
1032
if (command == null) {
usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/LocalConsumer.java
1040
pid = _createProcess(command);
usr/src/lib/libima/common/ima-lib.c
2225
IMA_UINT command,
usr/src/lib/libima/common/ima-lib.c
2265
pluginOid, command,
usr/src/lib/libima/common/ima-plugin.h
156
IMA_UINT command,
usr/src/lib/libima/common/ima.h
1994
IMA_UINT command,
usr/src/lib/libshare/common/libshare_zfs.c
1104
char *command;
usr/src/lib/libshare/common/libshare_zfs.c
1106
command = malloc(ZFS_MAXPROPLEN * 2);
usr/src/lib/libshare/common/libshare_zfs.c
1107
if (command != NULL) {
usr/src/lib/libshare/common/libshare_zfs.c
1129
(void) snprintf(command, ZFS_MAXPROPLEN * 2,
usr/src/lib/libshare/common/libshare_zfs.c
1132
pfile = popen(command, "r");
usr/src/lib/libshare/common/libshare_zfs.c
1143
free(command);
usr/src/lib/libshare/common/libshare_zfs.c
1210
char *command;
usr/src/lib/libshare/common/libshare_zfs.c
1217
command = malloc(ZFS_MAXPROPLEN * 2);
usr/src/lib/libshare/common/libshare_zfs.c
1218
if (command != NULL) {
usr/src/lib/libshare/common/libshare_zfs.c
1246
(void) snprintf(command, ZFS_MAXPROPLEN * 2,
usr/src/lib/libshare/common/libshare_zfs.c
1249
pfile = popen(command, "r");
usr/src/lib/libshare/common/libshare_zfs.c
1260
free(command);
usr/src/lib/libshare/common/libshare_zfs.c
1276
char *command;
usr/src/lib/libshare/common/libshare_zfs.c
1288
command = malloc(ZFS_MAXPROPLEN * 2);
usr/src/lib/libshare/common/libshare_zfs.c
1289
if (command == NULL)
usr/src/lib/libshare/common/libshare_zfs.c
1292
*command = '\0';
usr/src/lib/libshare/common/libshare_zfs.c
1335
(void) snprintf(command,
usr/src/lib/libshare/common/libshare_zfs.c
1341
(void) snprintf(command,
usr/src/lib/libshare/common/libshare_zfs.c
1347
pfile = popen(command, "r");
usr/src/lib/libshare/common/libshare_zfs.c
1372
free(command);
usr/src/lib/libsun_ima/common/ima.c
532
IMA_UINT command,
usr/src/lib/libtecla/common/getline.c
10471
gl->vi.command = 0;
usr/src/lib/libtecla/common/getline.c
1827
gl->vi.command = 0;
usr/src/lib/libtecla/common/getline.c
251
int command; /* True in vi command-mode */
usr/src/lib/libtecla/common/getline.c
4312
gl_delete_chars(gl, nc, gl->editor == GL_EMACS_MODE || gl->vi.command);
usr/src/lib/libtecla/common/getline.c
4381
if(gl->editor == GL_VI_MODE && !gl->vi.command && !gl->insert) {
usr/src/lib/libtecla/common/getline.c
4437
return gl_delete_chars(gl, count, gl->vi.command);
usr/src/lib/libtecla/common/getline.c
4458
gl_delete_chars(gl, count, gl->vi.command);
usr/src/lib/libtecla/common/getline.c
4510
gl->vi.command);
usr/src/lib/libtecla/common/getline.c
4538
gl->editor == GL_EMACS_MODE || gl->vi.command);
usr/src/lib/libtecla/common/getline.c
4582
gl->vi.command = 0;
usr/src/lib/libtecla/common/getline.c
5088
int was_command = gl->vi.command;
usr/src/lib/libtecla/common/getline.c
5490
if(gl->vi.command && gl_vi_append(gl, 0, NULL))
usr/src/lib/libtecla/common/getline.c
5613
if(gl->vi.command && gl_vi_append(gl, 0, NULL))
usr/src/lib/libtecla/common/getline.c
6764
if(gl->vi.command && gl->number < 0 && count == '0')
usr/src/lib/libtecla/common/getline.c
6958
gl->vi.command = 0; /* Start in input mode */
usr/src/lib/libtecla/common/getline.c
6998
gl->vi.command = 0;
usr/src/lib/libtecla/common/getline.c
7017
gl->vi.command = 0;
usr/src/lib/libtecla/common/getline.c
7088
gl->vi.command = 0; /* Allow cursor at EOL */
usr/src/lib/libtecla/common/getline.c
7101
gl->vi.command = 0; /* Allow cursor at EOL */
usr/src/lib/libtecla/common/getline.c
7171
gl->vi.command = 0; /* Allow cursor at EOL */
usr/src/lib/libtecla/common/getline.c
7783
buff_curpos = gl->vi.command ? gl->ntotal-1 : gl->ntotal;
usr/src/lib/libtecla/common/getline.c
7810
if(gl->vi.command && !gl->vi.undo.saved) {
usr/src/lib/libtecla/common/getline.c
7816
if(gl->vi.command && !gl->vi.repeat.saved &&
usr/src/lib/libtecla/common/getline.c
7892
gl->vi.command = 0; /* Allow cursor at EOL */
usr/src/lib/libtecla/common/getline.c
7962
gl->vi.command = 0; /* Allow cursor at EOL */
usr/src/lib/libtecla/common/getline.c
8011
if(gl->editor == GL_VI_MODE && !gl->vi.command) {
usr/src/lib/libtecla/common/getline.c
8013
gl->vi.command = 1;
usr/src/lib/libtecla/common/getline.c
8062
if(status==0 && !gl->vi.command) {
usr/src/lib/libtecla/common/getline.c
8218
} else if(gl->vi.command && c != GL_ESC_CHAR) {
usr/src/lib/libtecla/common/getline.c
8254
if(keyseq[0] == GL_ESC_CHAR && !gl->vi.command)
usr/src/lib/libwrap/shell_cmd.c
45
void shell_cmd(command)
usr/src/lib/libwrap/shell_cmd.c
46
char *command;
usr/src/lib/libwrap/shell_cmd.c
61
do_child(command);
usr/src/lib/libwrap/shell_cmd.c
71
static void do_child(command)
usr/src/lib/libwrap/shell_cmd.c
72
char *command;
usr/src/lib/libwrap/shell_cmd.c
93
(void) execl("/bin/sh", "sh", "-c", command, (char *) 0);
usr/src/lib/print/libprint/common/nss_write.c
220
remote_command(char *command, char *host)
usr/src/lib/print/libprint/common/nss_write.c
228
command, NULL, AF_INET6)) < 0)
usr/src/lib/smbsrv/libsmbns/common/smbns_browser.c
893
unsigned char command;
usr/src/lib/smbsrv/libsmbns/common/smbns_browser.c
919
&command, /* Command */
usr/src/lib/storage/libg_fc/common/cmd.c
120
cmd(int file, struct uscsi_cmd *command, int flag)
usr/src/lib/storage/libg_fc/common/cmd.c
132
command->uscsi_flags = USCSI_RQENABLE;
usr/src/lib/storage/libg_fc/common/cmd.c
133
command->uscsi_flags |= flag;
usr/src/lib/storage/libg_fc/common/cmd.c
140
if ((command->uscsi_cdb == NULL) ||
usr/src/lib/storage/libg_fc/common/cmd.c
153
g_scsi_find_command_name(command->uscsi_cdb[0]));
usr/src/lib/storage/libg_fc/common/cmd.c
155
for (i = 0; i < (int)command->uscsi_cdblen; i++) {
usr/src/lib/storage/libg_fc/common/cmd.c
156
(void) printf("%x ", *(command->uscsi_cdb + i));
usr/src/lib/storage/libg_fc/common/cmd.c
160
command->uscsi_cdblen,
usr/src/lib/storage/libg_fc/common/cmd.c
161
command->uscsi_bufaddr,
usr/src/lib/storage/libg_fc/common/cmd.c
162
command->uscsi_buflen, command->uscsi_flags);
usr/src/lib/storage/libg_fc/common/cmd.c
164
if ((command->uscsi_buflen > 0) &&
usr/src/lib/storage/libg_fc/common/cmd.c
167
(uchar_t *)command->uscsi_bufaddr,
usr/src/lib/storage/libg_fc/common/cmd.c
168
MIN(command->uscsi_buflen, 512), HEX_ASCII);
usr/src/lib/storage/libg_fc/common/cmd.c
178
if (command->uscsi_timeout == 0) {
usr/src/lib/storage/libg_fc/common/cmd.c
179
command->uscsi_timeout = 60;
usr/src/lib/storage/libg_fc/common/cmd.c
184
status = ioctl(file, USCSICMD, command);
usr/src/lib/storage/libg_fc/common/cmd.c
185
if (status == 0 && command->uscsi_status == 0) {
usr/src/lib/storage/libg_fc/common/cmd.c
187
if ((command->uscsi_buflen > 0) &&
usr/src/lib/storage/libg_fc/common/cmd.c
190
(uchar_t *)command->uscsi_bufaddr,
usr/src/lib/storage/libg_fc/common/cmd.c
191
MIN(command->uscsi_buflen, 512), HEX_ASCII);
usr/src/lib/storage/libg_fc/common/cmd.c
196
if ((status != 0) && (command->uscsi_status == 0)) {
usr/src/lib/storage/libg_fc/common/cmd.c
210
if ((command->uscsi_rqbuf != NULL) &&
usr/src/lib/storage/libg_fc/common/cmd.c
211
(((char)command->uscsi_rqlen - (char)command->uscsi_rqresid) > 0)) {
usr/src/lib/storage/libg_fc/common/cmd.c
213
rqbuf = (struct scsi_extended_sense *)command->uscsi_rqbuf;
usr/src/lib/storage/libg_fc/common/cmd.c
249
g_scsi_printerr(command,
usr/src/lib/storage/libg_fc/common/cmd.c
250
(struct scsi_extended_sense *)command->uscsi_rqbuf,
usr/src/lib/storage/libg_fc/common/cmd.c
251
(command->uscsi_rqlen - command->uscsi_rqresid),
usr/src/lib/storage/libg_fc/common/cmd.c
267
switch ((uchar_t)command->uscsi_status & STATUS_MASK) {
usr/src/lib/storage/libg_fc/common/cmd.c
329
return (L_SCSI_ERROR | command->uscsi_status);
usr/src/lib/storage/libg_fc/common/genf.c
679
int command;
usr/src/lib/storage/libg_fc/common/genf.c
685
scsi_command_names[0].command = SCMD_TEST_UNIT_READY;
usr/src/lib/storage/libg_fc/common/genf.c
688
scsi_command_names[1].command = SCMD_FORMAT;
usr/src/lib/storage/libg_fc/common/genf.c
691
scsi_command_names[2].command = SCMD_REASSIGN_BLOCK;
usr/src/lib/storage/libg_fc/common/genf.c
694
scsi_command_names[3].command = SCMD_READ;
usr/src/lib/storage/libg_fc/common/genf.c
697
scsi_command_names[4].command = SCMD_WRITE;
usr/src/lib/storage/libg_fc/common/genf.c
700
scsi_command_names[5].command = SCMD_READ_G1;
usr/src/lib/storage/libg_fc/common/genf.c
703
scsi_command_names[6].command = SCMD_WRITE_G1;
usr/src/lib/storage/libg_fc/common/genf.c
706
scsi_command_names[7].command = SCMD_MODE_SELECT;
usr/src/lib/storage/libg_fc/common/genf.c
709
scsi_command_names[8].command = SCMD_MODE_SENSE;
usr/src/lib/storage/libg_fc/common/genf.c
712
scsi_command_names[9].command = SCMD_REASSIGN_BLOCK;
usr/src/lib/storage/libg_fc/common/genf.c
715
scsi_command_names[10].command = SCMD_REQUEST_SENSE;
usr/src/lib/storage/libg_fc/common/genf.c
718
scsi_command_names[11].command = SCMD_READ_DEFECT_LIST;
usr/src/lib/storage/libg_fc/common/genf.c
721
scsi_command_names[12].command = SCMD_INQUIRY;
usr/src/lib/storage/libg_fc/common/genf.c
724
scsi_command_names[13].command = SCMD_WRITE_BUFFER;
usr/src/lib/storage/libg_fc/common/genf.c
727
scsi_command_names[14].command = SCMD_READ_BUFFER;
usr/src/lib/storage/libg_fc/common/genf.c
730
scsi_command_names[15].command = SCMD_START_STOP;
usr/src/lib/storage/libg_fc/common/genf.c
733
scsi_command_names[16].command = SCMD_RESERVE;
usr/src/lib/storage/libg_fc/common/genf.c
736
scsi_command_names[17].command = SCMD_RELEASE;
usr/src/lib/storage/libg_fc/common/genf.c
739
scsi_command_names[18].command = SCMD_MODE_SENSE_G1;
usr/src/lib/storage/libg_fc/common/genf.c
742
scsi_command_names[19].command = SCMD_MODE_SELECT_G1;
usr/src/lib/storage/libg_fc/common/genf.c
745
scsi_command_names[20].command = SCMD_READ_CAPACITY;
usr/src/lib/storage/libg_fc/common/genf.c
748
scsi_command_names[21].command = SCMD_SYNC_CACHE;
usr/src/lib/storage/libg_fc/common/genf.c
751
scsi_command_names[22].command = SCMD_READ_DEFECT_LIST;
usr/src/lib/storage/libg_fc/common/genf.c
754
scsi_command_names[23].command = SCMD_GDIAG;
usr/src/lib/storage/libg_fc/common/genf.c
757
scsi_command_names[24].command = SCMD_SDIAG;
usr/src/lib/storage/libg_fc/common/genf.c
760
scsi_command_names[25].command = SCMD_PERS_RESERV_IN;
usr/src/lib/storage/libg_fc/common/genf.c
763
scsi_command_names[26].command = SCMD_PERS_RESERV_OUT;
usr/src/lib/storage/libg_fc/common/genf.c
766
scsi_command_names[27].command = SCMD_LOG_SENSE;
usr/src/lib/storage/libg_fc/common/genf.c
769
scsi_command_names[28].command = SCMD_UNKNOWN;
usr/src/lib/storage/libg_fc/common/genf.c
773
for (c = scsi_command_names; c->command != SCMD_UNKNOWN; c++)
usr/src/lib/storage/libg_fc/common/genf.c
774
if (c->command == cmd)
usr/src/stand/lib/sa/sparc/prom_misc.c
46
char *command;
usr/src/stand/lib/sa/sparc/prom_misc.c
56
command = encode_bytes_command;
usr/src/stand/lib/sa/sparc/prom_misc.c
59
command = encode_string_command;
usr/src/stand/lib/sa/sparc/prom_misc.c
62
prom_interpret(command, (uint_t)cn, prop_datalen,
usr/src/test/util-tests/tests/libnvpair_json/print_json.c
516
command_call(list_wrap_t **lw, char *command, int argc, char **argv)
usr/src/test/util-tests/tests/libnvpair_json/print_json.c
521
if (strcmp(command, command_handlers[ch].cmd_name) != 0)
usr/src/test/util-tests/tests/libnvpair_json/print_json.c
529
" but %d were provided.\n", command,
usr/src/test/util-tests/tests/libnvpair_json/print_json.c
541
(void) fprintf(stderr, "ERROR: invalid command: \"%s\"\n", command);
usr/src/tools/cscope-fast/command.c
530
(void) command(c);
usr/src/tools/cscope-fast/command.c
535
(void) command(c);
usr/src/tools/cscope-fast/global.h
190
BOOL command(int commandc);
usr/src/tools/cscope-fast/main.c
581
(void) command(ctrl('A')); /* search */
usr/src/tools/cscope-fast/main.c
600
if (command(c) == YES) {
usr/src/ucbcmd/sed/sed.h
111
char command;
usr/src/ucbcmd/sed/sed.h
123
char command;
usr/src/ucbcmd/sed/sed0.c
252
rep->r1.command = BCOM;
usr/src/ucbcmd/sed/sed0.c
274
rep->r1.command = EQCOM;
usr/src/ucbcmd/sed/sed0.c
308
rep->r1.command = ACOM;
usr/src/ucbcmd/sed/sed0.c
319
rep->r1.command = CCOM;
usr/src/ucbcmd/sed/sed0.c
328
rep->r1.command = ICOM;
usr/src/ucbcmd/sed/sed0.c
340
rep->r1.command = GCOM;
usr/src/ucbcmd/sed/sed0.c
344
rep->r1.command = CGCOM;
usr/src/ucbcmd/sed/sed0.c
348
rep->r1.command = HCOM;
usr/src/ucbcmd/sed/sed0.c
352
rep->r1.command = CHCOM;
usr/src/ucbcmd/sed/sed0.c
356
rep->r1.command = TCOM;
usr/src/ucbcmd/sed/sed0.c
360
rep->r1.command = BCOM;
usr/src/ucbcmd/sed/sed0.c
399
rep->r1.command = NCOM;
usr/src/ucbcmd/sed/sed0.c
403
rep->r1.command = CNCOM;
usr/src/ucbcmd/sed/sed0.c
407
rep->r1.command = PCOM;
usr/src/ucbcmd/sed/sed0.c
411
rep->r1.command = CPCOM;
usr/src/ucbcmd/sed/sed0.c
415
rep->r1.command = RCOM;
usr/src/ucbcmd/sed/sed0.c
426
rep->r1.command = DCOM;
usr/src/ucbcmd/sed/sed0.c
430
rep->r1.command = CDCOM;
usr/src/ucbcmd/sed/sed0.c
435
rep->r1.command = QCOM;
usr/src/ucbcmd/sed/sed0.c
441
rep->r1.command = LCOM;
usr/src/ucbcmd/sed/sed0.c
445
rep->r1.command = SCOM;
usr/src/ucbcmd/sed/sed0.c
520
rep->r1.command = WCOM;
usr/src/ucbcmd/sed/sed0.c
548
rep->r1.command = XCOM;
usr/src/ucbcmd/sed/sed0.c
552
rep->r1.command = YCOM;
usr/src/ucbcmd/sed/sed0.c
571
rep->r1.command = 0;
usr/src/ucbcmd/sed/sed1.c
137
for(ipc = ptrspace; ipc->r1.command; ) {
usr/src/ucbcmd/sed/sed1.c
196
command(ipc);
usr/src/ucbcmd/sed/sed1.c
333
switch(ipc->r1.command) {
usr/src/ucbcmd/sed/sed1.c
739
if((*aptr)->r1.command == ACOM) {
usr/src/ucbcmd/sed/sed1.c
99
static void command(union reptr *ipc);
usr/src/ucbcmd/tset/tset.c
459
char *command;
usr/src/ucbcmd/tset/tset.c
495
if (command = rindex(argv[0], '/'))
usr/src/ucbcmd/tset/tset.c
496
command++;
usr/src/ucbcmd/tset/tset.c
498
command = argv[0];
usr/src/ucbcmd/tset/tset.c
499
if (sequal(command, "reset")) {
usr/src/ucbcmd/tset/tset.c
905
if (tgetflag("UC") || (command[0] & 0140) == 0100) {
usr/src/uts/common/c2/audit_event.c
3374
uint32_t command;
usr/src/uts/common/c2/audit_event.c
3377
long command;
usr/src/uts/common/c2/audit_event.c
3382
command = (uint32_t)uap->command;
usr/src/uts/common/c2/audit_event.c
3384
switch (command) {
usr/src/uts/common/c2/audit_event.c
3401
uint32_t command;
usr/src/uts/common/c2/audit_event.c
3407
long command;
usr/src/uts/common/c2/audit_event.c
3412
command = (uint32_t)uap->command;
usr/src/uts/common/c2/audit_event.c
3415
au_uwrite(au_to_arg32(1, "cmd", command));
usr/src/uts/common/c2/audit_event.c
3417
switch (command) {
usr/src/uts/common/fs/smbclnt/netsmb/smb2_rq.c
337
uint16_t command;
usr/src/uts/common/fs/smbclnt/netsmb/smb2_rq.c
351
md_get_uint16le(mdp, &command);
usr/src/uts/common/fs/smbclnt/netsmb/smb_iod.c
777
uint16_t command, credits_granted;
usr/src/uts/common/fs/smbclnt/netsmb/smb_iod.c
829
md_get_uint16le(&md, &command);
usr/src/uts/common/fs/smbclnt/netsmb/smb_iod.c
856
if (command == SMB2_NEGOTIATE && credits_granted == 0)
usr/src/uts/common/fs/smbclnt/netsmb/smb_iod.c
906
if (command != SMB2_ECHO) {
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
1267
&sr->command, "Nwww..wwllqllq16c",
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
130
struct mbuf_chain *mbc = &sr->command;
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
287
if (sr->command.max_bytes <
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
292
clearsize = sr->command.max_bytes - SMB3_TFORM_HDR_SIZE;
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
298
rc = smb3_decrypt_sr(sr, &sr->command, &clear_mbc);
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
305
tmp_mbc = sr->command;
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
306
sr->command = clear_mbc;
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
433
rxb = (int64_t)(sr->command.chain_offset - sr->smb2_cmd_hdr);
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
521
sr->smb2_cmd_hdr = sr->command.chain_offset;
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
585
((sr->smb2_cmd_hdr + msg_len) > sr->command.max_bytes)) {
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
592
msg_len = sr->command.max_bytes - sr->smb2_cmd_hdr;
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
603
(void) MBC_SHADOW_CHAIN(&sr->smb_data, &sr->command,
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
612
sr->command.chain_offset = sr->smb2_cmd_hdr + msg_len;
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
613
ASSERT(sr->command.chain_offset <= sr->command.max_bytes);
usr/src/uts/common/fs/smbsrv/smb2_dispatch.c
977
sr->command.chain_offset =
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
1076
if (smb31_preauth_sha512_calc(sr, &sr->command,
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
277
skip = ctx_next_off - sr->command.chain_offset;
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
284
smb_mbc_decodef(&sr->command, "#.", skip) != 0) {
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
291
&sr->command, "ww4.",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
314
sr->command.chain_offset + nego->neg_cur_ctx.datalen, 8);
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
329
&sr->command, "ww",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
343
&sr->command, "#w",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
357
&sr->command, "#c",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
380
&sr->command, "w",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
395
&sr->command, "#w",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
418
&sr->command, "w",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
432
&sr->command, "#w",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
816
sr->smb2_cmd_hdr = sr->command.chain_offset;
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
832
&sr->command, "www..l16clw..",
usr/src/uts/common/fs/smbsrv/smb2_negotiate.c
861
rc = smb_mbc_decodef(&sr->command, "#w",
usr/src/uts/common/fs/smbsrv/smb_authenticate.c
292
if (smb31_preauth_sha512_calc(sr, &sr->command,
usr/src/uts/common/fs/smbsrv/smb_authenticate.c
310
if (smb31_preauth_sha512_calc(sr, &sr->command,
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
123
if (smb_mbc_copy(&xa->req_param_mb, &sr->command, psoff, pscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
128
if (smb_mbc_copy(&xa->req_data_mb, &sr->command, dsoff, dscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
232
if (smb_mbc_copy(&xa->req_param_mb, &sr->command, psoff, pscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
238
if (smb_mbc_copy(&xa->req_data_mb, &sr->command, dsoff, dscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
335
if (smb_mbc_copy(&xa->req_param_mb, &sr->command, psoff, pscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
340
if (smb_mbc_copy(&xa->req_data_mb, &sr->command, dsoff, dscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
437
if (smb_mbc_copy(&xa->req_param_mb, &sr->command, psoff, pscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
443
if (smb_mbc_copy(&xa->req_data_mb, &sr->command, dsoff, dscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
611
if (smb_mbc_copy(&xa->req_param_mb, &sr->command, psoff, pscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
616
if (smb_mbc_copy(&xa->req_data_mb, &sr->command, dsoff, dscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
713
if (smb_mbc_copy(&xa->req_param_mb, &sr->command, psoff, pscnt)) {
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
719
if (smb_mbc_copy(&xa->req_data_mb, &sr->command, dsoff, dscnt)) {
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
542
save_offset = sr->command.chain_offset;
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
543
rc = smb_mbc_decodef(&sr->command, SMB_HEADER_ED_FMT,
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
556
sr->command.chain_offset = save_offset;
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
664
sr->orig_request_hdr = sr->command.chain_offset;
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
669
if (smb_mbc_decodef(&sr->command, SMB_HEADER_ED_FMT,
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
736
if (smb_mbc_decodef(&sr->command, "b", &sr->smb_wct) != 0) {
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
741
(void) MBC_SHADOW_CHAIN(&sr->smb_vwv, &sr->command,
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
742
sr->command.chain_offset, sr->smb_wct * 2);
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
744
if (smb_mbc_decodef(&sr->command, "#.w", sr->smb_wct*2, &sr->smb_bcc)) {
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
758
max_bytes = sr->command.max_bytes - sr->command.chain_offset;
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
770
(void) MBC_SHADOW_CHAIN(&sr->smb_data, &sr->command,
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
771
sr->command.chain_offset, byte_count);
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
773
sr->command.chain_offset += byte_count;
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
774
if (sr->command.chain_offset > sr->command.max_bytes) {
usr/src/uts/common/fs/smbsrv/smb_dispatch.c
893
sr->command.chain_offset = sr->orig_request_hdr + sr->andx_off;
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
296
if (smb_mbc_decodef(&sr->command, SMB_HEADER_ED_FMT,
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
321
if (smb_mbc_decodef(&sr->command, "b", &sr->smb_wct) != 0)
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
323
(void) MBC_SHADOW_CHAIN(&sr->smb_vwv, &sr->command,
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
324
sr->command.chain_offset, sr->smb_wct * 2);
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
326
if (smb_mbc_decodef(&sr->command, "#.w", sr->smb_wct*2, &sr->smb_bcc))
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
328
(void) MBC_SHADOW_CHAIN(&sr->smb_data, &sr->command,
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
329
sr->command.chain_offset, sr->smb_bcc);
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
331
sr->command.chain_offset += sr->smb_bcc;
usr/src/uts/common/fs/smbsrv/smb_negotiate.c
332
if (sr->command.chain_offset > sr->command.max_bytes)
usr/src/uts/common/fs/smbsrv/smb_session.c
1429
if (sr->command.chain)
usr/src/uts/common/fs/smbsrv/smb_session.c
1430
m_freem(sr->command.chain);
usr/src/uts/common/fs/smbsrv/smb_session.c
389
MBC_ATTACH_MBUF(&sr->command, mhead);
usr/src/uts/common/fs/smbsrv/smb_session.c
390
sr->command.max_bytes = len;
usr/src/uts/common/fs/smbsrv/smb_session.c
668
if ((rc = smb_mbc_peek(&sr->command, 0, "l", &magic)) != 0)
usr/src/uts/common/fs/smbsrv/smb_signing.c
331
struct mbuf_chain mbc = sr->command;
usr/src/uts/common/fs/smbsrv/smb_signing.c
381
struct mbuf_chain mbc = sr->command;
usr/src/uts/common/inet/ip/ip_if.c
18722
ilb_cmd_t command = *((ilb_cmd_t *)cmd_mp->b_rptr);
usr/src/uts/common/inet/ip/ip_if.c
18734
switch (command) {
usr/src/uts/common/inet/ip/ip_if.c
18757
if (command == ILB_DESTROY_RULE) {
usr/src/uts/common/inet/ip/ip_if.c
18760
} else if (command == ILB_ENABLE_RULE) {
usr/src/uts/common/inet/ip/ip_if.c
18763
} else if (command == ILB_DISABLE_RULE) {
usr/src/uts/common/inet/ip/ip_if.c
18768
if (command == ILB_DESTROY_RULE) {
usr/src/uts/common/inet/ip/ip_if.c
18770
} else if (command == ILB_ENABLE_RULE) {
usr/src/uts/common/inet/ip/ip_if.c
18773
} else if (command == ILB_DISABLE_RULE) {
usr/src/uts/common/inet/ip/ip_if.c
18899
if (command == ILB_DEL_SERVERS)
usr/src/uts/common/inet/ip/ip_if.c
18901
else if (command == ILB_ENABLE_SERVERS)
usr/src/uts/common/inet/ip/ip_if.c
18903
else if (command == ILB_DISABLE_SERVERS)
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
589
ipf_hook_protocol_notify(hook_notify_cmd_t command, void *arg,
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
640
switch (command) {
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
686
ipf_hook_instance_notify(hook_notify_cmd_t command, void *arg,
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
696
switch (command) {
usr/src/uts/common/io/1394/adapters/hci1394_async.c
1063
void *command;
usr/src/uts/common/io/1394/adapters/hci1394_async.c
1094
hci1394_tlabel_lookup(async_handle->as_tlabel, &ac_tlabel, &command);
usr/src/uts/common/io/1394/adapters/hci1394_async.c
1103
*hcicmd = (hci1394_async_cmd_t *)command;
usr/src/uts/common/io/aac/aac.c
2731
ddi_put32(acc, &cmd->CTCommand.command, CT_GET_CONFIG_STATUS);
usr/src/uts/common/io/aac/aac.c
2748
ddi_put32(acc, &cmd->CTCommand.command,
usr/src/uts/common/io/aac/aac.c
3410
ddi_put32(acc, &ct->CTCommand.command, CT_CID_TO_32BITS_UID);
usr/src/uts/common/io/aac/aac.c
5768
ddi_put32(acc, &cmd->CTCommand.command, CT_PM_DRIVER_SUPPORT);
usr/src/uts/common/io/aac/aac.c
6470
switch (LE_32((uint32_t)aif->command)) {
usr/src/uts/common/io/aac/aac.c
6575
uint32_t aif_command = LE_32((uint32_t)aifp->command);
usr/src/uts/common/io/aac/aac.c
8311
&pContainer->CTCommand.command);
usr/src/uts/common/io/aac/aac.c
8450
aif_command = LE_32(aif->command);
usr/src/uts/common/io/aac/aac_regs.h
1372
AAC_AifCommand command; /* Tell host what type of notify this is */
usr/src/uts/common/io/aac/aac_regs.h
709
uint32_t command;
usr/src/uts/common/io/arn/arn_core.h
236
#define ARN_DDB(command) do { \
usr/src/uts/common/io/arn/arn_core.h
237
{ command; } \
usr/src/uts/common/io/arn/arn_core.h
241
#define ARN_DDB(command)
usr/src/uts/common/io/arn/arn_main.c
2526
uint16_t command;
usr/src/uts/common/io/arn/arn_main.c
2532
command = pci_config_get16(sc->sc_cfg_handle, PCI_CONF_COMM);
usr/src/uts/common/io/arn/arn_main.c
2533
command |= PCI_COMM_MAE | PCI_COMM_ME;
usr/src/uts/common/io/arn/arn_main.c
2534
pci_config_put16(sc->sc_cfg_handle, PCI_CONF_COMM, command);
usr/src/uts/common/io/arn/arn_main.c
2535
command = pci_config_get16(sc->sc_cfg_handle, PCI_CONF_COMM);
usr/src/uts/common/io/arn/arn_main.c
2536
if ((command & PCI_COMM_MAE) == 0) {
usr/src/uts/common/io/arn/arn_main.c
2541
if ((command & PCI_COMM_ME) == 0) {
usr/src/uts/common/io/arn/arn_main.c
2547
"set command reg to 0x%x \n", command));
usr/src/uts/common/io/ath/ath_impl.h
90
#define ATH_DDB(command) do { \
usr/src/uts/common/io/ath/ath_impl.h
91
{ command; } \
usr/src/uts/common/io/ath/ath_impl.h
95
#define ATH_DDB(command)
usr/src/uts/common/io/ath/ath_main.c
1899
uint16_t command;
usr/src/uts/common/io/ath/ath_main.c
1905
command = pci_config_get16(asc->asc_cfg_handle, PCI_CONF_COMM);
usr/src/uts/common/io/ath/ath_main.c
1906
command |= PCI_COMM_MAE | PCI_COMM_ME;
usr/src/uts/common/io/ath/ath_main.c
1907
pci_config_put16(asc->asc_cfg_handle, PCI_CONF_COMM, command);
usr/src/uts/common/io/ath/ath_main.c
1908
command = pci_config_get16(asc->asc_cfg_handle, PCI_CONF_COMM);
usr/src/uts/common/io/ath/ath_main.c
1909
if ((command & PCI_COMM_MAE) == 0) {
usr/src/uts/common/io/ath/ath_main.c
1914
if ((command & PCI_COMM_ME) == 0) {
usr/src/uts/common/io/ath/ath_main.c
1920
"set command reg to 0x%x \n", command));
usr/src/uts/common/io/atu/atu.c
222
atu_send_command(struct atu_softc *sc, uint8_t *command, int size)
usr/src/uts/common/io/atu/atu.c
225
0x0000, size, command);
usr/src/uts/common/io/bge/bge_chip2.c
315
uint16_t command;
usr/src/uts/common/io/bge/bge_chip2.c
373
cidp->command = pci_config_get16(handle, PCI_CONF_COMM);
usr/src/uts/common/io/bge/bge_chip2.c
398
cidp->clsize, cidp->latency, cidp->command));
usr/src/uts/common/io/bge/bge_chip2.c
496
command = bgep->chipid.command | PCI_COMM_MAE;
usr/src/uts/common/io/bge/bge_chip2.c
497
command &= ~(PCI_COMM_ME|PCI_COMM_MEMWR_INVAL);
usr/src/uts/common/io/bge/bge_chip2.c
499
command |= PCI_COMM_ME;
usr/src/uts/common/io/bge/bge_chip2.c
508
command &= ~PCI_COMM_PARITY_DETECT;
usr/src/uts/common/io/bge/bge_chip2.c
510
pci_config_put16(handle, PCI_CONF_COMM, command);
usr/src/uts/common/io/bge/bge_chip2.c
519
while ((value16 != command) && (i < 100)) {
usr/src/uts/common/io/bge/bge_impl.h
1118
#define BGE_DDB(command) do { \
usr/src/uts/common/io/bge/bge_impl.h
1119
{ command; } \
usr/src/uts/common/io/bge/bge_impl.h
1123
#define BGE_DDB(command) do { \
usr/src/uts/common/io/bge/bge_impl.h
615
uint16_t command; /* saved during attach */
usr/src/uts/common/io/bge/bge_kstats.c
322
(knp++)->value.ui64 = bgep->chipid.command;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
281
struct dmae_cmd* command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
289
command->src_addr_hi = U64_HI(source_offset);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
290
command->src_addr_lo = U64_LO(source_offset);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
292
command->dst_addr_hi = U64_HI(dest_offset);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
293
command->dst_addr_lo = U64_LO(dest_offset);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
295
command->len = length;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
318
struct dmae_cmd* command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
322
command->opcode = lm_dmae_opcode(pdev, block->source, block->dest, TRUE, FALSE, context->change_endianity);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
324
lm_dmae_command_set_block(pdev, command, block->source, block->dest, block->length);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
326
command->comp_addr_hi = context->completion_word_paddr.as_u32.high;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
327
command->comp_addr_lo = context->completion_word_paddr.as_u32.low;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
329
command->comp_val = completion_value;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
393
struct dmae_cmd* command)
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
400
command->opcode = lm_dmae_opcode(pdev, source, dest, FALSE, TRUE, operation->context->change_endianity);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
402
lm_dmae_command_set_block(pdev, command, source, dest, sizeof(struct dmae_cmd) / sizeof(u32_t));
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
413
--command->len;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
417
command->comp_addr_lo = lm_dmae_idx_to_go_cmd(operation->context->executer_channel) / 4;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
418
command->comp_addr_hi = 0;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
420
command->comp_val = DMAE_GO_VALUE;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
774
IN const struct dmae_cmd* command )
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
780
if ( CHK_NULL(pdev) || CHK_NULL(command))
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
786
if ERR_IF( ( ( 0 == command->dst_addr_lo ) && ( command->dst_addr_hi == command->dst_addr_lo ) ) ||
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
787
( ( 0 == command->src_addr_lo ) && ( command->src_addr_hi == command->src_addr_lo ) ) )
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
794
(int)command->opcode,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
795
(int)command->opcode_iov,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
796
(int)command->len,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
797
(int)command->src_addr_hi,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
798
(int)command->src_addr_lo,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
799
(int)command->dst_addr_hi,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
800
(int)command->dst_addr_lo );
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_dmae.c
810
i < 9 ? *(((u32_t*)command)+i) : 0 ) ;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_hw_init_reset.c
360
final_cleanup.command = (XSTORM_AGG_INT_FINAL_CLEANUP_INDEX << SDM_OP_GEN_COMP_PARAM_SHIFT) & SDM_OP_GEN_COMP_PARAM;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_hw_init_reset.c
361
final_cleanup.command |= (XSTORM_AGG_INT_FINAL_CLEANUP_COMP_TYPE << SDM_OP_GEN_COMP_TYPE_SHIFT) & SDM_OP_GEN_COMP_TYPE;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_hw_init_reset.c
362
final_cleanup.command |= 1 << SDM_OP_GEN_AGG_VECT_IDX_VALID_SHIFT;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_hw_init_reset.c
363
final_cleanup.command |= (function_for_clean_up << SDM_OP_GEN_AGG_VECT_IDX_SHIFT) & SDM_OP_GEN_AGG_VECT_IDX;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_hw_init_reset.c
367
REG_WR(PFDEV(pdev),XSDM_REG_OPERATION_GEN, final_cleanup.command);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_phy.c
137
u32 elink_cb_fw_command(struct elink_dev *cb, u32 command, u32 param)
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_phy.c
140
lm_mcp_cmd_send_recieve(cb, lm_mcp_mb_header, command, param, MCP_CMD_DEFAULT_TIMEOUT,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
1425
IN const u8_t command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
1437
lm_status = lm_eq_ramrod_post_sync(pdev,command,data,CMD_PRIORITY_NORMAL,&pdev->slowpath_info.niv_ramrod_state, niv_ramrod_state, NIV_RAMROD_COMPLETED);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
1476
IN const enum vif_list_rule_kind command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
1486
data.afex_vif_list_command = command;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
1488
data.echo = command;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
3823
if (((mm_le32_to_cpu(pending->command.hdr.conn_and_cmd_data) & SPE_HDR_T_CMD_ID)>>SPE_HDR_T_CMD_ID_SHIFT) != RAMROD_CMD_ID_COMMON_FUNCTION_STOP)
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
3886
u8_t command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
3894
DbgBreakIf(! command); /* todo: make this more detailed*/
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
3904
lm_sq_post_fill_entry(pdev,pending,cid,command,type,data,TRUE);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
3919
u8_t command, u16_t type, u32_t cid )
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
3927
priority, command, type, cid, pdev->sq_info.num_pending_normal);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
3963
(pending->cmd == command) &&
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4052
enum eth_spqe_cmd_id command = conn_and_cmd_data >> COMMON_RAMROD_ETH_RX_CQE_CMD_ID_SHIFT;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4063
"lm_eth_comp_cb: completion for cid=%d, command %d(0x%x)\n", cid, command, command);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4069
switch (command)
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4158
DbgMessage(pdev, FATAL,"lm_eth_init_command_comp_cb unhandled ramrod comp command=%d\n",command);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4165
lm_sq_complete(pdev, CMD_PRIORITY_NORMAL, command, ETH_CONNECTION_TYPE, cid);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4181
cqe.conn_and_cmd_data = pending->command.hdr.conn_and_cmd_data;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4183
cqe.protocol_data.data_hi = pending->command.protocol_data.hi;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/lm_sp.c
4184
cqe.protocol_data.data_lo = pending->command.protocol_data.lo;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/5710_hsi.h
648
u32_t command;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
107
pending->cmd = command;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
137
u8_t command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
158
u8_t command, u16_t type, u32_t cid );
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
179
u8_t command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
184
return lm_sq_post(pdev, cid, command, priority, type, data );
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
37
mm_memcpy(pdev->sq_info.sq_chain.prod_bd, &pending->command, sizeof(pending->command));
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
49
DbgMessage(pdev,VERBOSEl2sp | VERBOSEl4sp, "Writing SP prod %d, conn_and_cmd_data=%x, type=%d \n",pdev->sq_info.sq_chain.prod_idx, pending->command.hdr.conn_and_cmd_data, pending->command.hdr.type);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
82
u8_t command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
94
pending->command.hdr.conn_and_cmd_data = mm_cpu_to_le32((command << SPE_HDR_T_CMD_ID_SHIFT ) | HW_CID(pdev,cid));
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
95
pending->command.hdr.type = mm_cpu_to_le16(type);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
96
pending->command.protocol_data.hi = mm_cpu_to_le32(U64_HI(data));
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/command.h
97
pending->command.protocol_data.lo = mm_cpu_to_le32(U64_LO(data));
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/lm.h
857
IN const u8_t command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/lm5710.h
231
struct slow_path_element command;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3247
u8_t *command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3272
*command = (tcp->ulp_type == TOE_CONNECTION_TYPE)? RAMROD_OPCODE_TOE_INITIATE_OFFLOAD : L5CM_RAMROD_CMD_ID_ADD_NEW_CONNECTION;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3282
OUT u8_t * command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3294
*command = (tcp->ulp_type == TOE_CONNECTION_TYPE)? RAMROD_OPCODE_TOE_TERMINATE : L5CM_RAMROD_CMD_ID_TERMINATE_OFFLOAD;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3314
OUT u8_t * command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3348
*command = RAMROD_OPCODE_TOE_RESET_SEND;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3371
OUT u8_t * command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3408
*command = (tcp->ulp_type == TOE_CONNECTION_TYPE)? RAMROD_OPCODE_TOE_SEARCHER_DELETE : L5CM_RAMROD_CMD_ID_SEARCHER_DELETE;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3418
OUT u8_t * command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3430
*command = (tcp->ulp_type == TOE_CONNECTION_TYPE)? RAMROD_OPCODE_TOE_QUERY : L5CM_RAMROD_CMD_ID_QUERY;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3765
OUT u8_t * command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3775
*command = RAMROD_OPCODE_TOE_UPDATE;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3825
OUT u8_t * command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3832
*command = RAMROD_OPCODE_TOE_EMPTY_RAMROD;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3842
OUT u8_t * command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3868
*command = RAMROD_OPCODE_TOE_INVALIDATE;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3890
u8_t command = 0;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3904
lm_status = lm_tcp_post_initiate_offload_request(pdev, tcp, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3907
lm_status = lm_tcp_post_terminate_tcp_request(pdev, tcp, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3910
lm_status = lm_tcp_post_upload_tcp_request(pdev, tcp, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3913
lm_status = lm_tcp_post_query_request(pdev, tcp, &command, &data, request);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3919
lm_status = lm_tcp_post_update_request(pdev, tcp, &command, &data, request);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3922
lm_status = lm_tcp_post_invalidate_request(pdev, tcp, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3925
lm_status = lm_tcp_post_abortive_disconnect_request(pdev,tcp, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3930
lm_status = lm_tcp_post_empty_ramrod_request(pdev, tcp, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3938
tcp->cid, command, tcp->ulp_type, data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/lm_l4sp.c
3947
lm_command_post(pdev, tcp->cid, command, CMD_PRIORITY_NORMAL, tcp->ulp_type, data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
12
OUT u8_t *command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
18
*command = ISCSI_RAMROD_CMD_ID_INIT;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
30
OUT u8_t *command,
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
38
*command = ISCSI_RAMROD_CMD_ID_UPDATE_CONN;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
63
u8_t command = 0;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
72
lm_status = lm_sc_post_init_request(pdev, iscsi, request, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
76
lm_status = lm_sc_post_update_request(pdev, iscsi, request, &command, &data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
89
iscsi->cid, command, ISCSI_CONNECTION_TYPE, data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l5/lm_l5sp.c
90
lm_command_post(pdev, iscsi->cid, command, CMD_PRIORITY_NORMAL, ISCSI_CONNECTION_TYPE/*ulp*/, data);
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/vf/channel_vf/lm_vf.c
3290
final_cleanup.command = (XSTORM_AGG_INT_FINAL_CLEANUP_INDEX << SDM_OP_GEN_COMP_PARAM_SHIFT) & SDM_OP_GEN_COMP_PARAM;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/vf/channel_vf/lm_vf.c
3291
final_cleanup.command |= (XSTORM_AGG_INT_FINAL_CLEANUP_COMP_TYPE << SDM_OP_GEN_COMP_TYPE_SHIFT) & SDM_OP_GEN_COMP_TYPE;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/vf/channel_vf/lm_vf.c
3292
final_cleanup.command |= 1 << SDM_OP_GEN_AGG_VECT_IDX_VALID_SHIFT;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/vf/channel_vf/lm_vf.c
3293
final_cleanup.command |= (function_for_clean_up << SDM_OP_GEN_AGG_VECT_IDX_SHIFT) & SDM_OP_GEN_AGG_VECT_IDX;
usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/vf/channel_vf/lm_vf.c
3296
REG_WR(PFDEV(pdev),XSDM_REG_OPERATION_GEN, final_cleanup.command);
usr/src/uts/common/io/bnxe/577xx/hsi/hw/include/clc.h
45
extern u32 elink_cb_fw_command(struct elink_dev *cb, u32 command, u32 param);
usr/src/uts/common/io/cardbus/cardbus.c
1097
uint16_t command_preserve, command;
usr/src/uts/common/io/cardbus/cardbus.c
1139
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/common/io/cardbus/cardbus.c
1140
command &= (command_preserve | PCI_COMM_BACK2BACK_ENAB);
usr/src/uts/common/io/cardbus/cardbus.c
1141
command |= (cardbus_command_default & ~command_preserve);
usr/src/uts/common/io/cardbus/cardbus.c
1142
pci_config_put16(config_handle, PCI_CONF_COMM, command);
usr/src/uts/common/io/cardbus/cardbus.c
1143
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/common/io/devinfo.c
1413
if (DINFOHP & st->command) {
usr/src/uts/common/io/devinfo.c
1423
if (DINFOPATH & st->command) {
usr/src/uts/common/io/devinfo.c
1427
if (DINFOHP & st->command) {
usr/src/uts/common/io/devinfo.c
1444
if (DINFOLYR & st->command) {
usr/src/uts/common/io/devinfo.c
1492
if (off != 0 && (st->command & DINFOCLEANUP)) {
usr/src/uts/common/io/devinfo.c
1698
if ((DINFOPROP & st->command) &&
usr/src/uts/common/io/devinfo.c
1744
(st->command & DINFOSUBTREE) && (st->command & DINFOFORCE)) {
usr/src/uts/common/io/devinfo.c
1911
if (!((DINFOMINOR | DINFOPROP | DINFOPATH | DINFOHP) & st->command)) {
usr/src/uts/common/io/devinfo.c
1920
if (!(DINFOMINOR & st->command)) {
usr/src/uts/common/io/devinfo.c
1932
if (!(DINFOPATH & st->command)) {
usr/src/uts/common/io/devinfo.c
1963
if (!(DINFOPROP & st->command)) {
usr/src/uts/common/io/devinfo.c
2005
if (!(DINFOHP & st->command)) {
usr/src/uts/common/io/devinfo.c
2015
if (!(DINFOPRIVDATA & st->command)) {
usr/src/uts/common/io/devinfo.c
2034
if (!(DINFOSUBTREE & st->command)) {
usr/src/uts/common/io/devinfo.c
251
uint_t command; /* command from ioctl */
usr/src/uts/common/io/devinfo.c
286
(((st)->command & DINFOSUBTREE) && ((st)->command & DINFOFORCE) && \
usr/src/uts/common/io/devinfo.c
2990
if (DINFOPROP & st->command) {
usr/src/uts/common/io/devinfo.c
4040
if (st->command != (DINFOCACHE & DIIOC_MASK)) {
usr/src/uts/common/io/devinfo.c
4043
st->command));
usr/src/uts/common/io/devinfo.c
4056
CACHE_DEBUG((DI_INFO, "cache lookup args ok: 0x%x", st->command));
usr/src/uts/common/io/devinfo.c
4069
if ((st->command & DI_CACHE_SNAPSHOT_FLAGS) !=
usr/src/uts/common/io/devinfo.c
4073
st->command));
usr/src/uts/common/io/devinfo.c
4084
CACHE_DEBUG((DI_INFO, "cacheable snapshot request: 0x%x", st->command));
usr/src/uts/common/io/devinfo.c
4146
ASSERT(st->command == (DINFOCACHE & DIIOC_MASK));
usr/src/uts/common/io/devinfo.c
4147
st->command = (DI_CACHE_SNAPSHOT_FLAGS & DIIOC_MASK);
usr/src/uts/common/io/devinfo.c
4149
st->command = (DINFOCACHE & DIIOC_MASK);
usr/src/uts/common/io/devinfo.c
730
st->command = cmd & DIIOC_MASK;
usr/src/uts/common/io/devinfo.c
756
all->command = st->command;
usr/src/uts/common/io/devinfo.c
780
if ((st->command & DINFOCLEANUP) && !DEVICES_FILES_CLEANABLE(st)) {
usr/src/uts/common/io/devinfo.c
787
if ((st->command & DINFOCACHE) && !cache_args_valid(st, &error)) {
usr/src/uts/common/io/devinfo.c
797
if ((st->command & (DINFOPRIVDATA | DINFOFORCE)) != 0 &&
usr/src/uts/common/io/devinfo.c
805
if (st->command & DINFOPRIVDATA) {
usr/src/uts/common/io/devinfo.c
844
if (st->command & DINFOCACHE) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
133
command = *lp0 & ELS_CMD_MASK;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
151
if (command == ELS_CMD_ACC) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
191
switch (command) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
225
emlxs_elscmd_xlate(command), did);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
248
command, pkt->pkt_reason,
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
256
emlxs_elscmd_xlate(command), did,
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
262
emlxs_elscmd_xlate(command), did,
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
269
emlxs_elscmd_xlate(command), did,
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
277
switch (command) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_els.c
92
uint32_t command;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
10881
uint32_t command;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
10912
command = cmd[0] & ELS_CMD_MASK;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
10914
command = cmd[0] & ELS_CMD_MASK;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
10922
switch (command) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
10996
uint32_t command;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
11026
command = cmd[2];
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
11035
command = cmd[2];
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
11038
switch ((command >> 16)) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
4372
pkt->vpc.command = cmd;
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
4433
pkt->vpm.command = cmd;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
6025
(knp++)->value.ui32 = qlge->pci_cfg.command;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
636
qlge->pci_cfg.command = (uint16_t)
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
719
qlge->pci_cfg.command);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
2372
fcsm_init_job(fcsm_job_t *job, int instance, uint32_t command, uint32_t flags,
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
2378
job->job_code = command;
usr/src/uts/common/io/hme/hme.c
1058
uint16_t command;
usr/src/uts/common/io/hme/hme.c
1090
ddi_put16(cfg_handle, &cfg_ptr->command,
usr/src/uts/common/io/hme/hme.c
1173
uint16_t command;
usr/src/uts/common/io/hxge/hxge_impl.h
285
uint16_t command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2130
u8 command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2571
u8 command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2610
u8 command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2621
u8 command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2631
u8 command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2737
u8 command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2745
u8 command;
usr/src/uts/common/io/i40e/core/i40e_adminq_cmd.h
2917
u8 command;
usr/src/uts/common/io/i40e/core/i40e_common.c
1967
cmd->command = I40E_AQ_PHY_RESTART_AN;
usr/src/uts/common/io/i40e/core/i40e_common.c
1969
cmd->command |= I40E_AQ_PHY_LINK_ENABLE;
usr/src/uts/common/io/i40e/core/i40e_common.c
1971
cmd->command &= ~I40E_AQ_PHY_LINK_ENABLE;
usr/src/uts/common/io/i40e/core/i40e_common.c
4356
cmd->command |= I40E_AQ_LLDP_MIB_UPDATE_DISABLE;
usr/src/uts/common/io/i40e/core/i40e_common.c
4391
cmd->command |= I40E_AQ_LLDP_AGENT_RESTORE;
usr/src/uts/common/io/i40e/core/i40e_common.c
4396
*setting = cmd->command & 1;
usr/src/uts/common/io/i40e/core/i40e_common.c
4422
cmd->command |= I40E_AQ_LLDP_AGENT_SHUTDOWN;
usr/src/uts/common/io/i40e/core/i40e_common.c
4426
cmd->command |= I40E_AQ_LLDP_AGENT_STOP_PERSIST;
usr/src/uts/common/io/i40e/core/i40e_common.c
4456
cmd->command = I40E_AQ_LLDP_AGENT_START;
usr/src/uts/common/io/i40e/core/i40e_common.c
4460
cmd->command |= I40E_AQ_LLDP_AGENT_START_PERSIST;
usr/src/uts/common/io/i40e/core/i40e_common.c
4495
cmd->command = I40E_AQ_DCB_SET_AGENT;
usr/src/uts/common/io/i40e/core/i40e_common.c
4553
cmd->command = I40E_AQC_START_SPECIFIC_AGENT_MASK;
usr/src/uts/common/io/i40e/core/i40e_common.c
6429
u32 command = 0;
usr/src/uts/common/io/i40e/core/i40e_common.c
6432
command = (reg << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
usr/src/uts/common/io/i40e/core/i40e_common.c
6437
wr32(hw, I40E_GLGEN_MSCA(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6439
command = rd32(hw, I40E_GLGEN_MSCA(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6440
if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
usr/src/uts/common/io/i40e/core/i40e_common.c
6452
command = rd32(hw, I40E_GLGEN_MSRWD(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6453
*value = (command & I40E_GLGEN_MSRWD_MDIRDDATA_MASK) >>
usr/src/uts/common/io/i40e/core/i40e_common.c
6474
u32 command = 0;
usr/src/uts/common/io/i40e/core/i40e_common.c
6477
command = value << I40E_GLGEN_MSRWD_MDIWRDATA_SHIFT;
usr/src/uts/common/io/i40e/core/i40e_common.c
6478
wr32(hw, I40E_GLGEN_MSRWD(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6480
command = (reg << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
usr/src/uts/common/io/i40e/core/i40e_common.c
6486
wr32(hw, I40E_GLGEN_MSCA(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6488
command = rd32(hw, I40E_GLGEN_MSCA(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6489
if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
usr/src/uts/common/io/i40e/core/i40e_common.c
6514
u32 command = 0;
usr/src/uts/common/io/i40e/core/i40e_common.c
6518
command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
usr/src/uts/common/io/i40e/core/i40e_common.c
6525
wr32(hw, I40E_GLGEN_MSCA(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6527
command = rd32(hw, I40E_GLGEN_MSCA(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6528
if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
usr/src/uts/common/io/i40e/core/i40e_common.c
6542
command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
usr/src/uts/common/io/i40e/core/i40e_common.c
6550
wr32(hw, I40E_GLGEN_MSCA(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6552
command = rd32(hw, I40E_GLGEN_MSCA(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6553
if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
usr/src/uts/common/io/i40e/core/i40e_common.c
6562
command = rd32(hw, I40E_GLGEN_MSRWD(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6563
*value = (command & I40E_GLGEN_MSRWD_MDIRDDATA_MASK) >>
usr/src/uts/common/io/i40e/core/i40e_common.c
6588
u32 command = 0;
usr/src/uts/common/io/i40e/core/i40e_common.c
6592
command = (reg << I40E_GLGEN_MSCA_MDIADD_SHIFT) |
usr/src/uts/common/io/i40e/core/i40e_common.c
6599
wr32(hw, I40E_GLGEN_MSCA(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6601
command = rd32(hw, I40E_GLGEN_MSCA(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6602
if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
usr/src/uts/common/io/i40e/core/i40e_common.c
6615
command = value << I40E_GLGEN_MSRWD_MDIWRDATA_SHIFT;
usr/src/uts/common/io/i40e/core/i40e_common.c
6616
wr32(hw, I40E_GLGEN_MSRWD(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6618
command = (page << I40E_GLGEN_MSCA_DEVADD_SHIFT) |
usr/src/uts/common/io/i40e/core/i40e_common.c
6626
wr32(hw, I40E_GLGEN_MSCA(port_num), command);
usr/src/uts/common/io/i40e/core/i40e_common.c
6628
command = rd32(hw, I40E_GLGEN_MSCA(port_num));
usr/src/uts/common/io/i40e/core/i40e_common.c
6629
if (!(command & I40E_GLGEN_MSCA_MDICMD_MASK)) {
usr/src/uts/common/io/i40e/core/i40e_nvm.c
1438
switch (cmd->command) {
usr/src/uts/common/io/i40e/core/i40e_nvm.c
931
cmd->command, cmd->config, cmd->offset, cmd->data_size);
usr/src/uts/common/io/i40e/core/i40e_type.h
546
u32 command;
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
2760
uint_t command, status;
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
2768
command = pci_config_get16(hdl, offset + 2);
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
2806
command = ((command & 0xFF8F) | max_out_splt_trans << 4);
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
2844
command = ((command & 0xFFF3) | max_mem_rd_byte_cnt << 2);
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
2851
pci_config_put16(hdl, offset + 2, command);
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2526
hdr.command = -1;
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2538
"uverbs_write: hdr.command = %d", hdr.command);
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2540
"uverbs_write: hdr.command = %d", hdr.command);
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2553
if (hdr.command >=
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2555
!uverbs_cmd_table[hdr.command]) {
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2557
"uverbs_write: Invalid command (%d)", hdr.command);
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2591
rc = uverbs_cmd_table[hdr.command](uctxt, &payload[0], hdr.in_words * 4,
usr/src/uts/common/io/ixgbe/core/ixgbe_e610.c
3804
switch (cmd->command) {
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
600
u32 i, data, command;
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
603
command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
608
IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
618
command = IXGBE_READ_REG(hw, IXGBE_MSCA);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
619
if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
624
if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
634
command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
639
IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
649
command = IXGBE_READ_REG(hw, IXGBE_MSCA);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
650
if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
654
if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
708
u32 i, command;
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
714
command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
719
IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
729
command = IXGBE_READ_REG(hw, IXGBE_MSCA);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
730
if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
734
if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
743
command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
748
IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
758
command = IXGBE_READ_REG(hw, IXGBE_MSCA);
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
759
if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
usr/src/uts/common/io/ixgbe/core/ixgbe_phy.c
763
if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
usr/src/uts/common/io/ixgbe/core/ixgbe_type_e610.h
2268
u32 command; /* NVM command: READ or WRITE */
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1100
u32 i, command = 0;
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1107
command = IXGBE_READ_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL);
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1108
if ((command & IXGBE_SB_IOSF_CTRL_BUSY) == 0)
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1113
*ctrl = command;
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1134
u32 command, error __unused;
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1145
command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1149
IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1154
ret = ixgbe_iosf_wait(hw, &command);
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1156
if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1157
error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >>
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1180
u32 command, error __unused;
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1191
command = ((reg_addr << IXGBE_SB_IOSF_CTRL_ADDR_SHIFT) |
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1195
IXGBE_WRITE_REG(hw, IXGBE_SB_IOSF_INDIRECT_CTRL, command);
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1197
ret = ixgbe_iosf_wait(hw, &command);
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1199
if ((command & IXGBE_SB_IOSF_CTRL_RESP_STAT_MASK) != 0) {
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
1200
error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >>
usr/src/uts/common/io/mega_sas/megaraid_sas.c
303
uint16_t command;
usr/src/uts/common/io/mega_sas/megaraid_sas.c
407
command = pci_config_get16(instance->pci_handle,
usr/src/uts/common/io/mega_sas/megaraid_sas.c
410
if (!(command & PCI_COMM_ME)) {
usr/src/uts/common/io/mega_sas/megaraid_sas.c
411
command |= PCI_COMM_ME;
usr/src/uts/common/io/mega_sas/megaraid_sas.c
414
PCI_CONF_COMM, command);
usr/src/uts/common/io/mega_sas/megaraid_sas.h
1435
uint16_t command; /* Device control */
usr/src/uts/common/io/mr_sas/mr_sas.c
468
uint16_t command;
usr/src/uts/common/io/mr_sas/mr_sas.c
551
command = pci_config_get16(instance->pci_handle,
usr/src/uts/common/io/mr_sas/mr_sas.c
554
if (!(command & PCI_COMM_ME)) {
usr/src/uts/common/io/mr_sas/mr_sas.c
555
command |= PCI_COMM_ME;
usr/src/uts/common/io/mr_sas/mr_sas.c
558
PCI_CONF_COMM, command);
usr/src/uts/common/io/mr_sas/mr_sas.h
1815
uint16_t command; /* Device control */
usr/src/uts/common/io/mwl/mwl.c
3814
uint16_t vendor_id, device_id, command;
usr/src/uts/common/io/mwl/mwl.c
3883
command = PCI_COMM_MAE | PCI_COMM_ME;
usr/src/uts/common/io/mwl/mwl.c
3886
command);
usr/src/uts/common/io/nge/nge.h
578
uint16_t command; /* saved during attach */
usr/src/uts/common/io/nge/nge.h
920
#define NGE_DDB(command) do { \
usr/src/uts/common/io/nge/nge.h
921
{ command; } \
usr/src/uts/common/io/nge/nge.h
925
#define NGE_DDB(command)
usr/src/uts/common/io/nge/nge_chip.c
579
uint16_t command;
usr/src/uts/common/io/nge/nge_chip.c
598
infop->command = pci_config_get16(handle,
usr/src/uts/common/io/nge/nge_chip.c
659
command = infop->command | PCI_COMM_MAE;
usr/src/uts/common/io/nge/nge_chip.c
660
command &= ~PCI_COMM_MEMWR_INVAL;
usr/src/uts/common/io/nge/nge_chip.c
661
command |= PCI_COMM_ME;
usr/src/uts/common/io/nge/nge_chip.c
662
pci_config_put16(handle, PCI_CONF_COMM, command);
usr/src/uts/common/io/nge/nge_kstats.c
153
(knp++)->value.ui64 = infop->command;
usr/src/uts/common/io/ntxn/niu.c
104
unm_niu_gb_mii_mgmt_command_t command;
usr/src/uts/common/io/ntxn/niu.c
139
*(unm_crbword_t *)&command = 0; /* turn off any prior activity */
usr/src/uts/common/io/ntxn/niu.c
141
&command, 4);
usr/src/uts/common/io/ntxn/niu.c
144
command.read_cycle = 1;
usr/src/uts/common/io/ntxn/niu.c
146
&command, 4);
usr/src/uts/common/io/ntxn/unm_inc.h
1751
command:1,
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dev.c
1119
u32 command = 0, addr, count = FINAL_CLEANUP_POLL_CNT;
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dev.c
1136
command |= X_FINAL_CLEANUP_AGG_INT <<
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dev.c
1138
command |= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT;
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dev.c
1139
command |= id << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT;
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dev.c
1140
command |= SDM_COMP_TYPE_AGG_INT << SDM_OP_GEN_COMP_TYPE_SHIFT;
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dev.c
1151
id, command);
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_dev.c
1153
ecore_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
usr/src/uts/common/io/qede/579xx/drivers/ecore/ecore_hsi_common.h
2581
__le32 command;
usr/src/uts/common/io/qede/579xx/drivers/ecore/hsi_repository/ecore_hsi_common.h
2581
__le32 command;
usr/src/uts/common/io/ral/rt2560.c
2352
uint16_t vendor_id, device_id, command;
usr/src/uts/common/io/ral/rt2560.c
2411
command = PCI_COMM_MAE | PCI_COMM_ME;
usr/src/uts/common/io/ral/rt2560.c
2412
ddi_put16(ioh, (uint16_t *)((uintptr_t)regs + PCI_CONF_COMM), command);
usr/src/uts/common/io/ral/rt2560.c
2414
"set command reg to 0x%x \n", command);
usr/src/uts/common/io/rge/rge.h
342
uint16_t command; /* saved during attach */
usr/src/uts/common/io/rge/rge.h
654
#define RGE_DDB(command) do { \
usr/src/uts/common/io/rge/rge.h
655
{ command; } \
usr/src/uts/common/io/rge/rge.h
659
#define RGE_DDB(command) do { \
usr/src/uts/common/io/rge/rge_chip.c
759
cidp->command = pci_config_get16(handle, PCI_CONF_COMM);
usr/src/uts/common/io/rge/rge_chip.c
772
commd = cidp->command;
usr/src/uts/common/io/rge/rge_chip.c
781
cidp->clsize, cidp->latency, cidp->command));
usr/src/uts/common/io/rtw/rtw.c
3123
uint16_t vendor_id, device_id, command;
usr/src/uts/common/io/rtw/rtw.c
3187
command = PCI_COMM_MAE | PCI_COMM_ME;
usr/src/uts/common/io/rtw/rtw.c
3189
(uint16_t *)((uintptr_t)rsc->sc_cfg_base + PCI_CONF_COMM), command);
usr/src/uts/common/io/rtw/rtw.c
3191
"set command reg to 0x%x \n", command);
usr/src/uts/common/io/rtw/rtw.c
608
uint8_t command;
usr/src/uts/common/io/rtw/rtw.c
609
command = RTW_READ8(regs, RTW_9346CR);
usr/src/uts/common/io/rtw/rtw.c
610
command = command &~ RTW_EPROM_CMD_OPERATING_MODE_MASK;
usr/src/uts/common/io/rtw/rtw.c
611
command = command | (mode<<RTW_EPROM_CMD_OPERATING_MODE_SHIFT);
usr/src/uts/common/io/rtw/rtw.c
612
command = command &~ (1<<RTW_EPROM_CS_SHIFT);
usr/src/uts/common/io/rtw/rtw.c
613
command = command &~ (1<<RTW_EPROM_CK_SHIFT);
usr/src/uts/common/io/rtw/rtw.c
614
RTW_WRITE8(regs, RTW_9346CR, command);
usr/src/uts/common/io/rwd/rt2661.c
2818
uint16_t command, vendor_id, device_id;
usr/src/uts/common/io/rwd/rt2661.c
2884
command = PCI_COMM_MAE | PCI_COMM_ME;
usr/src/uts/common/io/rwd/rt2661.c
2887
command);
usr/src/uts/common/io/rwn/rt2860.c
2818
uint16_t command, vendor_id, device_id;
usr/src/uts/common/io/rwn/rt2860.c
2883
command = PCI_COMM_MAE | PCI_COMM_ME;
usr/src/uts/common/io/rwn/rt2860.c
2886
command);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
571
int status, attach_state, intr_types, bar, i, j, command;
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
620
command = pci_config_get16(pci_conf_handle, PCI_CONF_COMM);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
622
command|PCI_COMM_IO|PCI_COMM_MAE|PCI_COMM_ME);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
821
command = pci_config_get16(pci_conf_handle, PCI_CONF_COMM);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
823
command|PCI_COMM_IO|PCI_COMM_MAE|PCI_COMM_ME);
usr/src/uts/common/io/scsi/targets/st.c
584
static int st_reserve_release(struct scsi_tape *un, int command, ubufunc_t ubf);
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1353
uint16_t command;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1368
command = ((uint16_t)cmdp->sc_index << 8);
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1369
command |= COMMAND_TYPE_NORM |
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1374
command |= COMMAND_RESP_NONE;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1380
command |= COMMAND_RESP_48;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1384
command |= COMMAND_RESP_48_BUSY;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1387
command |= COMMAND_RESP_136;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1388
command &= ~(COMMAND_INDEX_CHECK_EN | COMMAND_CRC_CHECK_EN);
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1392
command |= COMMAND_RESP_48;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1393
command &= ~COMMAND_CRC_CHECK_EN;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1394
command &= ~COMMAND_INDEX_CHECK_EN;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1420
command |= COMMAND_DATA_PRESENT;
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
1488
PUT16(ss, REG_COMMAND, command);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
704
char command;
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
776
command = (char)(*(int *)mp->b_cont->b_rptr);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
785
usbkbmd, command);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
798
err = usbkbm_kioccmd(usbkbmd, mp, command, &ioctlrespsize);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
951
char command, size_t *ioctlrepsize)
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
959
switch (command) {
usr/src/uts/common/io/xge/hal/include/xgehal-regs.h
1186
u16 command; // 0x04
usr/src/uts/common/io/xge/hal/include/xgehal-regs.h
1251
u16 command; // 0x04
usr/src/uts/common/io/xge/hal/include/xgehal-regs.h
1309
u16 command; // 0x04
usr/src/uts/common/io/xge/hal/xgehal/xgehal-device.c
2212
xge_offsetof(xge_hal_pci_config_le_t, command), &cmd);
usr/src/uts/common/io/xge/hal/xgehal/xgehal-device.c
2215
xge_offsetof(xge_hal_pci_config_le_t, command), cmd);
usr/src/uts/common/io/xge/hal/xgehal/xgehal-device.c
568
xge_offsetof(xge_hal_pci_config_le_t, command), &cmd);
usr/src/uts/common/io/xge/hal/xgehal/xgehal-device.c
571
xge_offsetof(xge_hal_pci_config_le_t, command), cmd);
usr/src/uts/common/io/xge/hal/xgehal/xgehal-device.c
587
xge_offsetof(xge_hal_pci_config_le_t, command), &cmd);
usr/src/uts/common/io/xge/hal/xgehal/xgehal-device.c
595
xge_offsetof(xge_hal_pci_config_le_t, command), cmd);
usr/src/uts/common/io/xge/hal/xgehal/xgehal-mgmtaux.c
1183
__HAL_AUX_ENTRY("command", pci_config.command, "0x%04X");
usr/src/uts/common/smbsrv/smb.h
87
uint8_t command;
usr/src/uts/common/smbsrv/smb_ktypes.h
1838
struct mbuf_chain command;
usr/src/uts/common/smbsrv/smb_ktypes.h
1959
(((smb_hdr_t *)(hdr))->command)
usr/src/uts/common/sys/devinfo_impl.h
158
uint_t command; /* same as in di_init() */
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_extern.h
470
extern char *emlxs_mb_cmd_xlate(uint8_t command);
usr/src/uts/common/sys/fibre-channel/fca/qlc/ql_iocb.h
1253
uint8_t command;
usr/src/uts/common/sys/fibre-channel/fca/qlc/ql_iocb.h
1289
uint8_t command;
usr/src/uts/common/sys/fibre-channel/fca/qlge/qlge_hw.h
1014
volatile uint16_t command;
usr/src/uts/common/sys/ib/clients/of/rdma/ib_user_verbs.h
138
uint32_t command;
usr/src/uts/common/sys/nxge/nxge_impl.h
691
uint16_t command;
usr/src/uts/common/sys/sata/adapters/ahci/ahcireg.h
332
#define SET_FIS_COMMAND(fis, command) \
usr/src/uts/common/sys/sata/adapters/ahci/ahcireg.h
334
((command & 0xff) << 16))
usr/src/uts/common/sys/sata/adapters/si3124/si3124reg.h
80
#define SET_FIS_COMMAND(fis, command) \
usr/src/uts/common/sys/sata/adapters/si3124/si3124reg.h
82
((command & 0xff) << 16))
usr/src/uts/common/syscall/systeminfo.c
150
switch (command) {
usr/src/uts/common/syscall/systeminfo.c
55
systeminfo(int command, char *buf, long count)
usr/src/uts/common/syscall/systeminfo.c
62
if (count < 0 && command != SI_SET_HOSTNAME &&
usr/src/uts/common/syscall/systeminfo.c
63
command != SI_SET_SRPC_DOMAIN)
usr/src/uts/common/syscall/systeminfo.c
69
switch (command) {
usr/src/uts/i86pc/io/immu_regs.c
100
uint64_t command = 0, iva = 0;
usr/src/uts/i86pc/io/immu_regs.c
112
command |= TLB_INV_DRAIN_WRITE;
usr/src/uts/i86pc/io/immu_regs.c
116
command |= TLB_INV_DRAIN_READ;
usr/src/uts/i86pc/io/immu_regs.c
125
command |= TLB_INV_PAGE | TLB_INV_IVT |
usr/src/uts/i86pc/io/immu_regs.c
130
command |= TLB_INV_DOMAIN | TLB_INV_IVT |
usr/src/uts/i86pc/io/immu_regs.c
134
command |= TLB_INV_GLOBAL | TLB_INV_IVT;
usr/src/uts/i86pc/io/immu_regs.c
144
put_reg64(immu, iotlb_offset, command);
usr/src/uts/i86pc/io/immu_regs.c
671
uint64_t command = 0;
usr/src/uts/i86pc/io/immu_regs.c
679
command |= CCMD_INV_ICC | CCMD_INV_DEVICE
usr/src/uts/i86pc/io/immu_regs.c
684
command |= CCMD_INV_ICC | CCMD_INV_DOMAIN
usr/src/uts/i86pc/io/immu_regs.c
688
command |= CCMD_INV_ICC | CCMD_INV_GLOBAL;
usr/src/uts/i86pc/io/immu_regs.c
698
put_reg64(immu, IMMU_REG_CONTEXT_CMD, command);
usr/src/uts/i86pc/io/pci/pci.c
666
ushort_t command_preserve, command;
usr/src/uts/i86pc/io/pci/pci.c
744
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/i86pc/io/pci/pci.c
745
command &= (command_preserve | PCI_COMM_BACK2BACK_ENAB);
usr/src/uts/i86pc/io/pci/pci.c
746
command |= (pci_command_default & ~command_preserve);
usr/src/uts/i86pc/io/pci/pci.c
747
pci_config_put16(config_handle, PCI_CONF_COMM, command);
usr/src/uts/i86pc/os/x_call.c
460
uint_t command)
usr/src/uts/i86pc/os/x_call.c
504
msg->xc_command = command;
usr/src/uts/i86pc/os/x_call.c
515
if (command == XC_MSG_SYNC)
usr/src/uts/intel/io/amr/amr.c
311
uint32_t command, i;
usr/src/uts/intel/io/amr/amr.c
357
command = pci_config_get16(softs->pciconfig_handle, PCI_CONF_COMM);
usr/src/uts/intel/io/amr/amr.c
362
if ((command & PCI_COMM_MAE) == 0) {
usr/src/uts/intel/io/amr/amr.c
368
if (!(command & PCI_COMM_ME)) {
usr/src/uts/intel/io/amr/amr.c
369
command |= PCI_COMM_ME;
usr/src/uts/intel/io/amr/amr.c
371
PCI_CONF_COMM, command);
usr/src/uts/intel/io/amr/amr.c
372
command = pci_config_get16(softs->pciconfig_handle,
usr/src/uts/intel/io/amr/amr.c
374
if (!(command & PCI_COMM_ME))
usr/src/uts/intel/io/dnet/dnet.c
2056
val |= ((block->command & CMD_SCR) && !dnetp->disable_scrambler) ?
usr/src/uts/intel/io/dnet/dnet.c
2069
val |= block->command & CMD_PS ? (PORT_SELECT | HEARTBEAT_DISABLE) : 0;
usr/src/uts/intel/io/dnet/dnet.c
2072
val |= (block->command) & CMD_PCS ? PCS_FUNCTION : 0;
usr/src/uts/intel/io/dnet/dnet.c
3353
if (block->command & (1 << 15)) {
usr/src/uts/intel/io/dnet/dnet.c
3355
if (block->command & (1UL<<14))
usr/src/uts/intel/io/dnet/dnet.c
3380
mask = 1 << ((block->command & CMD_MEDIABIT_MASK) >> 1);
usr/src/uts/intel/io/dnet/dnet.c
3381
polarity = block->command & CMD_POL ? 0xffffffff : 0;
usr/src/uts/intel/io/dnet/dnet.c
4115
if (leaf->block[i].command & CMD_DEFAULT_MEDIUM)
usr/src/uts/intel/io/dnet/dnet.c
4180
block->command = *vi++;
usr/src/uts/intel/io/dnet/dnet.c
4181
block->command |= *vi++ << 8;
usr/src/uts/intel/io/dnet/dnet.c
4185
block->command = CMD_PS;
usr/src/uts/intel/io/dnet/dnet.c
4260
block->command = CMD_PS;
usr/src/uts/intel/io/dnet/dnet.c
4295
block->command = *vi++;
usr/src/uts/intel/io/dnet/dnet.c
4296
block->command |= *vi++ << 8;
usr/src/uts/intel/io/dnet/dnet.c
4315
block->command = *vi++;
usr/src/uts/intel/io/dnet/dnet.c
4316
block->command |= (*vi++) << 8;
usr/src/uts/intel/io/dnet/dnet.c
4342
block->command = 0x8e; /* PCS, PS off, media sense: bit7, pol=1 */
usr/src/uts/intel/io/dnet/dnet.c
4346
block->command = 0x8e; /* PCS, PS off, media sense: bit7, pol=1 */
usr/src/uts/intel/io/dnet/dnet.c
4350
block->command = 0x6d; /* PCS, PS, SCR on, media sense: bit6, pol=0 */
usr/src/uts/intel/io/dnet/dnet.c
4354
block->command = 0x406d; /* PCS, PS, SCR on, media sense: bit6, pol=0 */
usr/src/uts/intel/io/dnet/dnet.c
4364
block->command = 0x8000; /* No media sense, PCS, SCR, PS all off */
usr/src/uts/intel/io/dnet/dnet.c
4373
block->command = 0x8e; /* PCS, PS off, media sense: bit7, pol=1 */
usr/src/uts/intel/io/dnet/dnet.c
4382
block->command = 0x8e; /* PCS, PS off, media sense: bit7, pol=1 */
usr/src/uts/intel/io/dnet/dnet.c
4391
block->command = 0x6d; /* PCS, PS, SCR on, media sense: bit6, pol=0 */
usr/src/uts/intel/io/dnet/dnet.c
4400
block->command = 0x406d; /* PCS, PS, SCR on, media sense: bit6, pol=0 */
usr/src/uts/intel/io/dnet/dnet.c
4415
block->command = 1; /* Port select */
usr/src/uts/intel/io/dnet/dnet.c
4427
block->command = 1; /* Port select */
usr/src/uts/intel/io/dnet/dnet.c
4527
block->type, media_str[block->media_code], block->command);
usr/src/uts/intel/io/dnet/dnet.h
304
uint16_t command;
usr/src/uts/intel/io/ipmi/ipmi.c
59
uint8_t command, size_t requestlen, size_t replylen)
usr/src/uts/intel/io/ipmi/ipmi.c
69
req->ir_command = command;
usr/src/uts/intel/io/pci/pci_boot.c
2511
uint16_t command = 0;
usr/src/uts/intel/io/pci/pci_boot.c
2533
command = (uint_t)pci_getw(bus, dev, func, PCI_CONF_COMM);
usr/src/uts/intel/io/pci/pci_boot.c
2535
command & ~(PCI_COMM_MAE | PCI_COMM_IO));
usr/src/uts/intel/io/pci/pci_boot.c
2543
pci_putw(bus, dev, func, PCI_CONF_COMM, command);
usr/src/uts/intel/io/pci/pci_boot.c
2639
command = pci_getw(bus, dev,
usr/src/uts/intel/io/pci/pci_boot.c
2641
command &= ~PCI_COMM_IO;
usr/src/uts/intel/io/pci/pci_boot.c
2643
PCI_CONF_COMM, command);
usr/src/uts/intel/io/pci/pci_boot.c
2836
command = pci_getw(bus, dev,
usr/src/uts/intel/io/pci/pci_boot.c
2838
command &= ~PCI_COMM_MAE;
usr/src/uts/intel/io/pci/pci_boot.c
2840
PCI_CONF_COMM, command);
usr/src/uts/intel/io/pci/pci_pci.c
214
ushort_t command;
usr/src/uts/intel/io/pci/pci_pci.c
643
ushort_t command_preserve, command;
usr/src/uts/intel/io/pci/pci_pci.c
727
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/intel/io/pci/pci_pci.c
728
command &= (command_preserve | PCI_COMM_BACK2BACK_ENAB);
usr/src/uts/intel/io/pci/pci_pci.c
729
command |= (ppb_command_default & ~command_preserve);
usr/src/uts/intel/io/pci/pci_pci.c
730
pci_config_put16(config_handle, PCI_CONF_COMM, command);
usr/src/uts/intel/io/pci/pci_pci.c
792
ppb_p->config_state[i].command =
usr/src/uts/intel/io/pci/pci_pci.c
828
ppb_p->config_state[i].command);
usr/src/uts/sun/io/dada/conf/dcd_confsubr.c
273
uchar_t command,
usr/src/uts/sun/io/dada/conf/dcd_confsubr.c
283
cdbp->cmd = command;
usr/src/uts/sun/io/dada/conf/dcd_confsubr.c
295
command, flags, block, address_mode, size);
usr/src/uts/sun/io/dada/targets/dad.c
4475
uchar_t command, tmp;
usr/src/uts/sun/io/dada/targets/dad.c
4513
command = ATA_READ_DMA;
usr/src/uts/sun/io/dada/targets/dad.c
4515
command = ATA_WRITE_DMA;
usr/src/uts/sun/io/dada/targets/dad.c
4520
command = ATA_READ_MULTIPLE;
usr/src/uts/sun/io/dada/targets/dad.c
4522
command = ATA_READ;
usr/src/uts/sun/io/dada/targets/dad.c
4525
command = ATA_READ_MULTIPLE;
usr/src/uts/sun/io/dada/targets/dad.c
4527
command = ATA_WRITE;
usr/src/uts/sun/io/dada/targets/dad.c
4531
(void) makecommand(pkt, 0, command, real_addr, ADD_LBA_MODE,
usr/src/uts/sun4u/chicago/io/fpc/fpc-impl-4u.c
300
int command =
usr/src/uts/sun4u/chicago/io/fpc/fpc-impl-4u.c
324
if (((rval = ldi_ioctl(handle_impl->devhandle, command, (intptr_t)&prg,
usr/src/uts/sun4u/io/i2c/nexus/pcf8584.c
194
#define PCF8584_DDB(command) \
usr/src/uts/sun4u/io/i2c/nexus/pcf8584.c
196
{ command; } \
usr/src/uts/sun4u/io/i2c/nexus/pcf8584.c
224
#define PCF8584_DDB(command) \
usr/src/uts/sun4u/io/pci/db21554.c
1618
ph->command = pci_config_get16(config_handle, hdr_off + PCI_CONF_COMM);
usr/src/uts/sun4u/io/pci/db21554.c
2254
ushort_t command_preserve, command;
usr/src/uts/sun4u/io/pci/db21554.c
2319
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/sun4u/io/pci/db21554.c
2320
command &= (command_preserve | PCI_COMM_BACK2BACK_ENAB);
usr/src/uts/sun4u/io/pci/db21554.c
2321
command |= (db_command_default & ~command_preserve);
usr/src/uts/sun4u/io/pci/db21554.c
2322
pci_config_put16(config_handle, PCI_CONF_COMM, command);
usr/src/uts/sun4u/io/pci/db21554.c
2496
statep->command =
usr/src/uts/sun4u/io/pci/db21554.c
2554
pci_config_put16(config_handle, PCI_CONF_COMM, statep->command);
usr/src/uts/sun4u/io/pci/pci_pci.c
213
ushort_t command;
usr/src/uts/sun4u/io/pci/pci_pci.c
790
ushort_t command_preserve, command;
usr/src/uts/sun4u/io/pci/pci_pci.c
902
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/sun4u/io/pci/pci_pci.c
903
command &= (command_preserve | PCI_COMM_BACK2BACK_ENAB);
usr/src/uts/sun4u/io/pci/pci_pci.c
904
command |= (ppb_command_default & ~command_preserve);
usr/src/uts/sun4u/io/pci/pci_pci.c
905
pci_config_put16(config_handle, PCI_CONF_COMM, command);
usr/src/uts/sun4u/io/pci/pci_util.c
404
uint16_t command_preserve, command;
usr/src/uts/sun4u/io/pci/pci_util.c
557
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/sun4u/io/pci/pci_util.c
558
command &= (command_preserve | PCI_COMM_BACK2BACK_ENAB);
usr/src/uts/sun4u/io/pci/pci_util.c
559
command |= (pci_command_default & ~command_preserve);
usr/src/uts/sun4u/io/pci/pci_util.c
560
pci_config_put16(config_handle, PCI_CONF_COMM, command);
usr/src/uts/sun4u/io/pci/pci_util.c
561
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/sun4u/io/pci/simba.c
1014
pci_config_put16(ch, PCI_CONF_COMM, statep->command);
usr/src/uts/sun4u/io/pci/simba.c
231
ushort_t command;
usr/src/uts/sun4u/io/pci/simba.c
700
ushort_t command_preserve, command;
usr/src/uts/sun4u/io/pci/simba.c
788
command = pci_config_get16(config_handle, PCI_CONF_COMM);
usr/src/uts/sun4u/io/pci/simba.c
789
command &= (command_preserve | PCI_COMM_BACK2BACK_ENAB);
usr/src/uts/sun4u/io/pci/simba.c
790
command |= (simba_command_default & ~command_preserve);
usr/src/uts/sun4u/io/pci/simba.c
791
pci_config_put16(config_handle, PCI_CONF_COMM, command);
usr/src/uts/sun4u/io/pci/simba.c
935
statep->command = pci_config_get16(ch, PCI_CONF_COMM);
usr/src/uts/sun4u/sunfire/io/jtag.c
2188
tap_issue_cmd(volatile u_int *jreg, u_int command)
usr/src/uts/sun4u/sunfire/io/jtag.c
2192
*jreg = command;
usr/src/uts/sun4u/sys/pci/db21554_config.h
221
uint16_t command;
usr/src/uts/sun4u/sys/pci/db21554_ctrl.h
66
ushort_t command;
usr/src/uts/sun4u/sys/rmc_comm_hproto.h
318
rsci32 command;
usr/src/uts/sun4u/sys/rmc_comm_hproto.h
335
rsci32 command; /* echo back adm command */