Lines Matching refs:cdb

294 	{ 0x24, 0x00, "invalid field in cdb" },
295 { 0x24, 0x01, "cdb decryption error" },
710 ddump("cdb:", (caddr_t)ucmd->uscsi_cdb,
1166 union scsi_cdb cdb;
1171 (void) memset(&cdb, 0, sizeof (union scsi_cdb));
1172 cdb.scc_cmd = SCMD_REQUEST_SENSE;
1173 FORMG0COUNT(&cdb, (uchar_t)buflen);
1174 ucmd.uscsi_cdb = (caddr_t)&cdb;
1203 union scsi_cdb cdb;
1221 (void) memset(&cdb, 0, sizeof (union scsi_cdb));
1222 cdb.scc_cmd = SCMD_MODE_SENSE;
1223 FORMG0COUNT(&cdb, (uchar_t)nbytes);
1224 cdb.cdb_opaque[2] = page_control | page_code;
1225 ucmd.uscsi_cdb = (caddr_t)&cdb;
1340 union scsi_cdb cdb;
1356 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1357 cdb.scc_cmd = SCMD_MODE_SENSE_G1;
1358 FORMG1COUNT(&cdb, (uint16_t)nbytes);
1359 cdb.cdb_opaque[2] = page_control | page_code;
1360 ucmd.uscsi_cdb = (caddr_t)&cdb;
1476 union scsi_cdb cdb;
1518 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1519 cdb.scc_cmd = SCMD_MODE_SELECT;
1520 FORMG0COUNT(&cdb, (uchar_t)nbytes);
1521 cdb.cdb_opaque[1] = (uchar_t)options;
1522 ucmd.uscsi_cdb = (caddr_t)&cdb;
1545 union scsi_cdb cdb;
1590 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1591 cdb.scc_cmd = SCMD_MODE_SELECT_G1;
1592 FORMG1COUNT(&cdb, (uint16_t)nbytes);
1593 cdb.cdb_opaque[1] = (uchar_t)options;
1594 ucmd.uscsi_cdb = (caddr_t)&cdb;
1613 union scsi_cdb cdb;
1632 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1633 cdb.scc_cmd = SCMD_LOG_SENSE_G1;
1634 FORMG1COUNT(&cdb, (uint16_t)page_size);
1635 cdb.cdb_opaque[2] = page_control | page_code;
1636 ucmd.uscsi_cdb = (caddr_t)&cdb;