Searched defs:UsbEndpoint (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/usb/
H A DUsbEndpoint.java32 public class UsbEndpoint implements Parcelable { class in inherits:Parcelable
40 * UsbEndpoint should only be instantiated by UsbService implementation
43 public UsbEndpoint(int address, int attributes, int maxPacketSize, int interval) { method in class:UsbEndpoint
132 return "UsbEndpoint[mAddress=" + mAddress + ",mAttributes=" + mAttributes +
136 public static final Parcelable.Creator<UsbEndpoint> CREATOR =
137 new Parcelable.Creator<UsbEndpoint>() {
138 public UsbEndpoint createFromParcel(Parcel in) {
143 return new UsbEndpoint(address, attributes, maxPacketSize, interval);
146 public UsbEndpoint[] newArray(int size) {
147 return new UsbEndpoint[siz
[all...]

Completed in 43 milliseconds