Home
last modified time | relevance | path

Searched refs:endpointValues (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/jni/
Dcom_android_server_UsbHostManager.cpp67 Vector<int> endpointValues; in usb_device_added() local
92 endpointValues.add(endpoint->bEndpointAddress); in usb_device_added()
93 endpointValues.add(endpoint->bmAttributes); in usb_device_added()
94 endpointValues.add(__le16_to_cpu(endpoint->wMaxPacketSize)); in usb_device_added()
95 endpointValues.add(endpoint->bInterval); in usb_device_added()
106 length = endpointValues.size(); in usb_device_added()
108 env->SetIntArrayRegion(endpointArray, 0, length, endpointValues.array()); in usb_device_added()
/frameworks/base/services/java/com/android/server/usb/
DUsbHostManager.java105 int[] endpointValues) { in usbDeviceAdded() argument
132 int address = endpointValues[eval++]; in usbDeviceAdded()
133 int attributes = endpointValues[eval++]; in usbDeviceAdded()
134 int maxPacketSize = endpointValues[eval++]; in usbDeviceAdded()
135 int interval = endpointValues[eval++]; in usbDeviceAdded()