Home
last modified time | relevance | path

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

/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
DUsbDeviceDescriptor.java48 private int mDeviceRelease; // 12:2 Device Release number - BCD field in UsbDeviceDescriptor
91 return mDeviceRelease; in getDeviceRelease()
96 int hundredths = mDeviceRelease & 0xF; in getDeviceReleaseString()
97 int tenths = (mDeviceRelease & 0xF0) >> 4; in getDeviceReleaseString()
98 int ones = (mDeviceRelease & 0xF00) >> 8; in getDeviceReleaseString()
99 int tens = (mDeviceRelease & 0xF000) >> 12; in getDeviceReleaseString()
176 mDeviceRelease = stream.unpackUsbShort(); in parseRawDescriptors()