/libcore/support/src/test/java/libcore/tlswire/util/ |
D | IoUtils.java | 25 return (in.readUnsignedByte() << 16) | in.readUnsignedShort(); in readUnsignedInt24() 50 return in.readUnsignedByte(); in readTlsVariableLengthVectorSizeBytes()
|
D | TlsProtocolVersion.java | 58 int major = in.readUnsignedByte(); in read() 59 int minor = in.readUnsignedByte(); in read()
|
/libcore/ojluni/src/main/java/java/io/ |
D | DataInput.java | 355 int readUnsignedByte() throws IOException; in readUnsignedByte() method
|
D | DataInputStream.java | 290 public final int readUnsignedByte() throws IOException { in readUnsignedByte() method in DataInputStream
|
D | RandomAccessFile.java | 696 public final int readUnsignedByte() throws IOException { in readUnsignedByte() method in RandomAccessFile
|
D | ObjectInputStream.java | 927 public int readUnsignedByte() throws IOException { in readUnsignedByte() method in ObjectInputStream 928 return bin.readUnsignedByte(); in readUnsignedByte() 2777 public int readUnsignedByte() throws IOException { in readUnsignedByte() method in ObjectInputStream.BlockDataInputStream
|
/libcore/support/src/test/java/libcore/tlswire/record/ |
D | TlsRecord.java | 33 result.type = in.readUnsignedByte(); in read()
|
/libcore/support/src/test/java/libcore/tlswire/handshake/ |
D | HandshakeMessage.java | 38 int type = in.readUnsignedByte(); in read()
|
D | ServerNameHelloExtension.java | 42 int type = in.readUnsignedByte(); in parseData()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldDataInputStreamTest.java | 289 129, dis.readUnsignedByte()); in test_readUnsignedByte() 292 dis.readUnsignedByte(); in test_readUnsignedByte() 300 dis.readUnsignedByte(); in test_readUnsignedByte()
|
D | OldRandomAccessFileTest.java | 868 255, raf.readUnsignedByte()); in test_readUnsignedByte() 871 raf.readUnsignedByte(); in test_readUnsignedByte() 879 raf.readUnsignedByte(); in test_readUnsignedByte()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | DataInputStreamTest.java | 441 assertEquals("Incorrect byte read", 129, dis.readUnsignedByte()); in test_readUnsignedByte() 510 public int readUnsignedByte() throws IOException { in readUnsignedByte() method in DataInputStreamTest.TestDataInputStream
|
D | RandomAccessFileTest.java | 410 assertEquals("Incorrect byte read/written", 255, raf.readUnsignedByte()); in test_readUnsignedByte()
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/ |
D | ObjectInputStreamTest.java | 488 255, ois.readUnsignedByte()); in test_readUnsignedByte() 491 ois.readUnsignedByte(); in test_readUnsignedByte() 499 ois.readUnsignedByte(); in test_readUnsignedByte()
|