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

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

Completed in 65 milliseconds