Package org.robolectric.shadows
Class ShadowUsbDeviceConnection
- java.lang.Object
-
- org.robolectric.shadows.ShadowUsbDeviceConnection
-
@Implements(android.hardware.usb.UsbDeviceConnection.class) public class ShadowUsbDeviceConnection extends Object
Robolectric implementation ofUsbDeviceConnection.
-
-
Constructor Summary
Constructors Constructor Description ShadowUsbDeviceConnection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected intbulkTransfer(UsbEndpoint endpoint, byte[] buffer, int length, int timeout)protected intbulkTransfer(UsbEndpoint endpoint, byte[] buffer, int offset, int length, int timeout)protected booleanclaimInterface(UsbInterface intf, boolean force)protected intcontrolTransfer(int requestType, int request, int value, int index, byte[] buffer, int length, int timeout)protected intcontrolTransfer(int requestType, int request, int value, int index, byte[] buffer, int offset, int length, int timeout)voidreadOutgoingData(byte[] buffer)Fills the buffer with data that was written by UsbDeviceConnection#bulkTransfer.protected booleanreleaseInterface(UsbInterface intf)protected UsbRequestrequestWait()protected UsbRequestrequestWait(long timeout)voidwriteIncomingData(byte[] data)Passes data that can then be read by an initialized UsbRequest#queue(ByteBuffer).
-
-
-
Method Detail
-
claimInterface
@Implementation protected boolean claimInterface(UsbInterface intf, boolean force)
-
releaseInterface
@Implementation protected boolean releaseInterface(UsbInterface intf)
-
controlTransfer
@Implementation(minSdk=19) protected int controlTransfer(int requestType, int request, int value, int index, byte[] buffer, int length, int timeout)
-
controlTransfer
@Implementation(minSdk=19) protected int controlTransfer(int requestType, int request, int value, int index, byte[] buffer, int offset, int length, int timeout)
-
requestWait
@Implementation protected UsbRequest requestWait()
-
requestWait
@Implementation(minSdk=26) protected UsbRequest requestWait(long timeout) throws TimeoutException
- Throws:
TimeoutException
-
bulkTransfer
@Implementation(minSdk=18) protected int bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int offset, int length, int timeout)
-
bulkTransfer
@Implementation protected int bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int length, int timeout)
-
readOutgoingData
public void readOutgoingData(byte[] buffer) throws IOExceptionFills the buffer with data that was written by UsbDeviceConnection#bulkTransfer.- Throws:
IOException
-
writeIncomingData
public void writeIncomingData(byte[] data)
Passes data that can then be read by an initialized UsbRequest#queue(ByteBuffer).
-
-