Lines Matching refs:inqbuf
720 struct scsipi_inquiry_data inqbuf;
735 char vendor[(sizeof(inqbuf.vendor) * 4) + 1],
736 product[(sizeof(inqbuf.product) * 4) + 1],
737 revision[(sizeof(inqbuf.revision) * 4) + 1],
750 memset(&inqbuf, 0, sizeof(inqbuf));
753 cmd.length = sizeof(inqbuf);
755 scsi_command(fd, &cmd, sizeof(cmd), &inqbuf, sizeof(inqbuf),
758 scsi_strvis(vendor, sizeof(vendor), inqbuf.vendor,
759 sizeof(inqbuf.vendor));
760 scsi_strvis(product, sizeof(product), inqbuf.product,
761 sizeof(inqbuf.product));
762 scsi_strvis(revision, sizeof(revision), inqbuf.revision,
763 sizeof(inqbuf.revision));