/aosp12/frameworks/base/services/usb/java/com/android/server/usb/descriptors/ |
H A D | ByteStream.java | 115 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()
|
H A D | UsbInterfaceDescriptor.java | 52 mInterfaceNumber = stream.getUnsignedByte(); in parseRawDescriptors() 55 mUsbClass = stream.getUnsignedByte(); in parseRawDescriptors() 56 mUsbSubclass = stream.getUnsignedByte(); in parseRawDescriptors() 57 mProtocol = stream.getUnsignedByte(); in parseRawDescriptors()
|
H A D | UsbConfigDescriptor.java | 118 mConfigValue = stream.getUnsignedByte(); in parseRawDescriptors() 120 mAttribs = stream.getUnsignedByte(); in parseRawDescriptors() 121 mMaxPower = stream.getUnsignedByte(); in parseRawDescriptors()
|
H A D | UsbEndpointDescriptor.java | 127 mEndpointAddress = stream.getUnsignedByte(); in parseRawDescriptors() 128 mAttributes = stream.getUnsignedByte(); in parseRawDescriptors() 130 mInterval = stream.getUnsignedByte(); in parseRawDescriptors()
|
H A D | UsbDeviceDescriptor.java | 170 mDevClass = stream.getUnsignedByte(); in parseRawDescriptors() 171 mDevSubClass = stream.getUnsignedByte(); in parseRawDescriptors() 172 mProtocol = stream.getUnsignedByte(); in parseRawDescriptors()
|
H A D | UsbDescriptorParser.java | 128 int length = stream.getUnsignedByte(); in allocDescriptor()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/tzs2range/read/ |
H A D | HeaderBlock.java | 43 int dataS2Level = blockData.getUnsignedByte(offset++); in HeaderBlock() 44 int prefixBitCount = blockData.getUnsignedByte(offset++); in HeaderBlock() 45 int suffixBitCount = blockData.getUnsignedByte(offset++); in HeaderBlock() 46 int suffixRecordBitCount = blockData.getUnsignedByte(offset++); in HeaderBlock() 47 int endCellIdOffsetBitCount = blockData.getUnsignedByte(offset++); in HeaderBlock() 48 int suffixTableBlockIdOffset = blockData.getUnsignedByte(offset++); in HeaderBlock() 74 int bankCount = blockData.getUnsignedByte(offset++); in HeaderBlock() 78 int setCount = blockData.getUnsignedByte(offset++); in HeaderBlock()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/ |
H A D | FrameParser.java | 70 private static short getUnsignedByte(ByteBuffer data) { in getUnsignedByte() method in FrameParser 138 short protocolNumber = getUnsignedByte(data); in parseIpv4Packet() 234 short dhcpOptionTag = getUnsignedByte(data); in parseDhcpPacket() 241 short dhcpOptionLen = getUnsignedByte(data); in parseDhcpPacket() 295 short messageType = getUnsignedByte(data); in parseIcmpPacket() 356 short nextHeaderType = getUnsignedByte(data); in parseIpv6Packet() 361 nextHeaderType = getUnsignedByte(data); in parseIpv6Packet() 386 short icmpV6Type = getUnsignedByte(data); in parseIcmpV6Packet() 431 short eapolVersion = getUnsignedByte(data); in parseEapolPacket() 437 short eapolType = getUnsignedByte(data); in parseEapolPacket() [all …]
|
/aosp12/frameworks/libs/net/common/tests/unit/src/com/android/net/module/util/ |
H A D | IpUtilsTest.java | 41 private int getUnsignedByte(ByteBuffer buf, int offset) { in getUnsignedByte() method in IpUtilsTest 46 return getUnsignedByte(buf, offset) * 256 + getUnsignedByte(buf, offset + 1); in getChecksum() 108 int sum = getUnsignedByte(packet, sumOffset) * 256 + getUnsignedByte(packet, sumOffset + 1); in testIpv6TcpChecksum()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/block/read/ |
H A D | BlockData.java | 57 public int getUnsignedByte(int byteOffset) { in getUnsignedByte() method in BlockData 81 int size = getUnsignedByte(byteOffset); in getTinyByteArray() 101 int size = getUnsignedByte(byteOffset); in getTinyCharArray()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/table/packed/read/ |
H A D | PackedTableReader.java | 84 int bitField = blockData.getUnsignedByte(offset); in PackedTableReader() 88 mEntrySizeBytes = blockData.getUnsignedByte(offset); in PackedTableReader() 96 mKeySizeBits = blockData.getUnsignedByte(offset); in PackedTableReader()
|
/aosp12/system/tools/xsdc/tests/ |
H A D | tests.cpp | 88 EXPECT_EQ((int)(numericTypes.getUnsignedByte()), 255); in TEST_F() 132 EXPECT_EQ((numericTypes.getUnsignedByte()), numericTypes2.getUnsignedByte()); in TEST_F()
|
/aosp12/packages/modules/GeoTZ/s2storage/src/test/java/com/android/timezone/location/storage/block/read/ |
H A D | BlockDataTest.java | 119 assertEquals(129, blockData.getUnsignedByte(offset)); in typedRandomAccess()
|
/aosp12/system/tools/xsdc/tests/src/com/android/xsdc/tests/ |
H A D | XmlParserTest.java | 173 assertThat(numericTypes.getUnsignedByte(), is((short) 255)); in testPredefinedTypes()
|
/aosp12/system/tools/xsdc/tests/resources/predefined_types/api/ |
H A D | current.txt | 82 method public short getUnsignedByte();
|
/aosp12/frameworks/base/services/ |
H A D | art-profile | 41658 HPLcom/android/server/usb/descriptors/ByteStream;->getUnsignedByte()I+]Lcom/android/server/usb/desc…
|