Home
last modified time | relevance | path

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

/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
DByteStream.java115 public int getUnsignedByte() { in getUnsignedByte() method in ByteStream
134 int b0 = getUnsignedByte(); in unpackUsbShort()
135 int b1 = getUnsignedByte(); in unpackUsbShort()
152 int b0 = getUnsignedByte(); in unpackUsbTriple()
153 int b1 = getUnsignedByte(); in unpackUsbTriple()
154 int b2 = getUnsignedByte(); in unpackUsbTriple()
168 int b0 = getUnsignedByte(); in unpackUsbInt()
169 int b1 = getUnsignedByte(); in unpackUsbInt()
170 int b2 = getUnsignedByte(); in unpackUsbInt()
171 int b3 = getUnsignedByte(); in unpackUsbInt()
DUsbMidiBlockParser.java65 mLength = stream.getUnsignedByte(); in parseRawDescriptors()
66 mDescriptorType = stream.getUnsignedByte(); in parseRawDescriptors()
67 mDescriptorSubtype = stream.getUnsignedByte(); in parseRawDescriptors()
68 mGroupBlockId = stream.getUnsignedByte(); in parseRawDescriptors()
69 mGroupTerminalBlockType = stream.getUnsignedByte(); in parseRawDescriptors()
70 mGroupTerminal = stream.getUnsignedByte(); in parseRawDescriptors()
71 mNumGroupTerminals = stream.getUnsignedByte(); in parseRawDescriptors()
72 mBlockItem = stream.getUnsignedByte(); in parseRawDescriptors()
73 mMidiProtocol = stream.getUnsignedByte(); in parseRawDescriptors()
121 mHeaderLength = stream.getUnsignedByte(); in parseRawDescriptors()
[all …]
DUsbInterfaceDescriptor.java55 mInterfaceNumber = stream.getUnsignedByte(); in parseRawDescriptors()
58 mUsbClass = stream.getUnsignedByte(); in parseRawDescriptors()
59 mUsbSubclass = stream.getUnsignedByte(); in parseRawDescriptors()
60 mProtocol = stream.getUnsignedByte(); in parseRawDescriptors()
DUsbConfigDescriptor.java122 mConfigValue = stream.getUnsignedByte(); in parseRawDescriptors()
124 mAttribs = stream.getUnsignedByte(); in parseRawDescriptors()
125 mMaxPower = stream.getUnsignedByte(); in parseRawDescriptors()
DUsbEndpointDescriptor.java140 mEndpointAddress = stream.getUnsignedByte(); in parseRawDescriptors()
141 mAttributes = stream.getUnsignedByte(); in parseRawDescriptors()
143 mInterval = stream.getUnsignedByte(); in parseRawDescriptors()
DUsbDeviceDescriptor.java170 mDevClass = stream.getUnsignedByte(); in parseRawDescriptors()
171 mDevSubClass = stream.getUnsignedByte(); in parseRawDescriptors()
172 mProtocol = stream.getUnsignedByte(); in parseRawDescriptors()
DUsbDescriptorParser.java132 int length = stream.getUnsignedByte(); in allocDescriptor()