/frameworks/base/wifi/tests/src/android/net/wifi/aware/ |
D | TlvBufferUtilsTest.java | 48 tlv11.putByte(0, (byte) 2); in testTlvBuild() 57 tlv01.putByte(0, (byte) 2); in testTlvBuild() 80 tlv.putByte(0, (byte) 2); in testTlvReuse() 81 tlv.putByte(1, (byte) 104); in testTlvReuse() 86 tlv.putByte(5, (byte) 7); in testTlvReuse() 151 tlv.putByte(0, (byte) 2); in testRawPuts() 153 tlv.putByte(1, (byte) 104); in testRawPuts() 199 tlv02.putByte(0, (byte) 2); in testTlvIterate() 315 tlv01.putByte(0, (byte) 2); in testTlvInvalidByteArray()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/ |
D | Utf8.java | 1203 UnsafeUtil.putByte(out, outIx++, (byte) c); in encodeUtf8() 1213 UnsafeUtil.putByte(out, outIx++, (byte) c); in encodeUtf8() 1215 UnsafeUtil.putByte(out, outIx++, (byte) ((0xF << 6) | (c >>> 6))); in encodeUtf8() 1216 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & c))); in encodeUtf8() 1219 UnsafeUtil.putByte(out, outIx++, (byte) ((0xF << 5) | (c >>> 12))); in encodeUtf8() 1220 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & (c >>> 6)))); in encodeUtf8() 1221 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & c))); in encodeUtf8() 1230 UnsafeUtil.putByte(out, outIx++, (byte) ((0xF << 4) | (codePoint >>> 18))); in encodeUtf8() 1231 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & (codePoint >>> 12)))); in encodeUtf8() 1232 UnsafeUtil.putByte(out, outIx++, (byte) (0x80 | (0x3F & (codePoint >>> 6)))); in encodeUtf8() [all …]
|
D | UnsafeUtil.java | 72 static void putByte(byte[] target, long offset, byte value) { in putByte() method in UnsafeUtil 73 UNSAFE.putByte(target, offset, value); in putByte() 89 static void putByte(long address, byte value) { in putByte() method in UnsafeUtil 90 UNSAFE.putByte(address, value); in putByte()
|
D | CodedOutputStream.java | 1312 UnsafeUtil.putByte(buffer, pos++, (byte) value); in writeUInt32NoTag() 1316 UnsafeUtil.putByte(buffer, pos++, (byte) ((value & 0x7F) | 0x80)); in writeUInt32NoTag() 1358 UnsafeUtil.putByte(buffer, pos++, (byte) value); in writeUInt64NoTag() 1362 UnsafeUtil.putByte(buffer, pos++, (byte) (((int) value & 0x7F) | 0x80)); in writeUInt64NoTag() 1890 UnsafeUtil.putByte(buffer, pos++, (byte) value); in bufferUInt32NoTag() 1893 UnsafeUtil.putByte(buffer, pos++, (byte) ((value & 0x7F) | 0x80)); in bufferUInt32NoTag() 1925 UnsafeUtil.putByte(buffer, pos++, (byte) value); in bufferUInt64NoTag() 1928 UnsafeUtil.putByte(buffer, pos++, (byte) (((int) value & 0x7F) | 0x80)); in bufferUInt64NoTag()
|
/frameworks/native/libs/binder/include/binder/ |
D | Value.h | 109 void putByte(const int8_t& value);
|
/frameworks/base/core/java/android/os/ |
D | Bundle.java | 446 public void putByte(@Nullable String key, byte value) { in putByte() method in Bundle 447 super.putByte(key, value); in putByte()
|
D | BaseBundle.java | 585 void putByte(@Nullable String key, byte value) { in putByte() method in BaseBundle
|
/frameworks/base/wifi/java/android/net/wifi/aware/ |
D | TlvBufferUtils.java | 167 public TlvConstructor putByte(int type, byte b) { in putByte() method in TlvBufferUtils.TlvConstructor
|
/frameworks/base/core/java/android/content/ |
D | Intent.java | 6780 else if (uri.startsWith("b.", i)) b.putByte(key, Byte.parseByte(value)); in parseUri() 6983 intent.mExtras.putByte(key, Byte.parseByte(value)); 8847 mExtras.putByte(name, value); in putExtra()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareDataPathStateManager.java | 1608 tlvc.putByte(SUB_TYPE_TRANSPORT_PROTOCOL, (byte) transportProtocol); in buildTlv()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/ |
D | WifiAwareDataPathStateManagerTest.java | 1930 tlvc.putByte(WifiAwareDataPathStateManager.NetworkInformationData in buildTlv()
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 21516 method public void putByte(java.lang.String, byte);
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 49063 Landroid/net/wifi/aware/TlvBufferUtils$TlvConstructor;->putByte(IB)Landroid/net/wifi/aware/TlvBuffe… 52059 Landroid/os/BaseBundle;->putByte(Ljava/lang/String;B)V
|
/frameworks/base/api/ |
D | current.txt | 34208 method public void putByte(@Nullable String, byte);
|