Package org.jnode.driver.bus.scsi.cdb.spc

Examples of org.jnode.driver.bus.scsi.cdb.spc.InquiryData


        protected final void inquiry() throws SCSIException, TimeoutException,
            InterruptedException {
            final byte[] inqData = new byte[96];
            scsiDevice.executeCommand(new CDBInquiry(inqData.length), inqData,
                0, 50000);
            inquiryResult = new InquiryData(inqData);
            log.debug("INQUIRY Data : " + inquiryResult.toString());
        }
View Full Code Here


            final byte[] inqData = new byte[96];

            ITransport t = storageDeviceData.getTransport();
            t.transport(new CDBInquiry(inqData.length), 50000);

            inquiryResult = new InquiryData(inqData);
            log.debug("INQUIRY Data : " + inquiryResult.toString());
        }
View Full Code Here

TOP

Related Classes of org.jnode.driver.bus.scsi.cdb.spc.InquiryData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.