Lines Matching defs:cdb

297 	{ 0x24, 0x00, "invalid field in cdb" },
298 { 0x24, 0x01, "cdb decryption error" },
713 ddump("cdb:", (caddr_t)ucmd->uscsi_cdb,
1169 union scsi_cdb cdb;
1174 (void) memset(&cdb, 0, sizeof (union scsi_cdb));
1175 cdb.scc_cmd = SCMD_REQUEST_SENSE;
1176 FORMG0COUNT(&cdb, (uchar_t)buflen);
1177 ucmd.uscsi_cdb = (caddr_t)&cdb;
1206 union scsi_cdb cdb;
1223 (void) memset(&cdb, 0, sizeof (union scsi_cdb));
1224 cdb.scc_cmd = SCMD_MODE_SENSE;
1225 FORMG0COUNT(&cdb, (uchar_t)nbytes);
1226 cdb.cdb_opaque[2] = page_control | page_code;
1227 ucmd.uscsi_cdb = (caddr_t)&cdb;
1328 union scsi_cdb cdb;
1343 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1344 cdb.scc_cmd = SCMD_MODE_SENSE_G1;
1345 FORMG1COUNT(&cdb, (uint16_t)nbytes);
1346 cdb.cdb_opaque[2] = page_control | page_code;
1347 ucmd.uscsi_cdb = (caddr_t)&cdb;
1450 union scsi_cdb cdb;
1492 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1493 cdb.scc_cmd = SCMD_MODE_SELECT;
1494 FORMG0COUNT(&cdb, (uchar_t)nbytes);
1495 cdb.cdb_opaque[1] = (uchar_t)options;
1496 ucmd.uscsi_cdb = (caddr_t)&cdb;
1519 union scsi_cdb cdb;
1564 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1565 cdb.scc_cmd = SCMD_MODE_SELECT_G1;
1566 FORMG1COUNT(&cdb, (uint16_t)nbytes);
1567 cdb.cdb_opaque[1] = (uchar_t)options;
1568 ucmd.uscsi_cdb = (caddr_t)&cdb;
1587 union scsi_cdb cdb;
1606 (void) memset((char *)&cdb, 0, sizeof (union scsi_cdb));
1607 cdb.scc_cmd = SCMD_LOG_SENSE_G1;
1608 FORMG1COUNT(&cdb, (uint16_t)page_size);
1609 cdb.cdb_opaque[2] = page_control | page_code;
1610 ucmd.uscsi_cdb = (caddr_t)&cdb;