Searched refs:readUnsignedShort (Results 1 - 14 of 14) sorted by relevance

/libcore/support/src/test/java/libcore/tlswire/util/
H A DIoUtils.java25 return (in.readUnsignedByte() << 16) | in.readUnsignedShort();
42 result[i] = in.readUnsignedShort();
52 return in.readUnsignedShort();
/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java354 int readUnsignedShort() throws IOException; method in interface:DataInput
515 * exactly the manner of the {@code readUnsignedShort}
H A DDataInputStream.java322 * See the general contract of the <code>readUnsignedShort</code>
338 public final int readUnsignedShort() throws IOException { method in class:DataInputStream
583 * @see java.io.DataInputStream#readUnsignedShort()
586 int utflen = in.readUnsignedShort();
H A DRandomAccessFile.java764 public final int readUnsignedShort() throws IOException { method in class:RandomAccessFile
970 * {@code readUnsignedShort}. This value gives the number of
985 * @see java.io.RandomAccessFile#readUnsignedShort()
H A DObjectInputStream.java963 public int readUnsignedShort() throws IOException { method in class:ObjectInputStream
964 return bin.readUnsignedShort();
2820 public int readUnsignedShort() throws IOException { method in class:ObjectInputStream.BlockDataInputStream
2825 return din.readUnsignedShort();
2881 return readUTFBody(readUnsignedShort());
/libcore/support/src/test/java/libcore/tlswire/record/
H A DTlsRecord.java35 int fragmentLength = in.readUnsignedShort();
/libcore/support/src/test/java/libcore/tlswire/handshake/
H A DEllipticCurvesHelloExtension.java42 int curve_id = in.readUnsignedShort();
H A DHelloExtension.java73 int type = in.readUnsignedShort();
H A DClientHello.java63 extensionsSectionSize = in.readUnsignedShort();
/libcore/luni/src/test/java/libcore/java/io/
H A DOldDataInputStreamTest.java312 (Short.MAX_VALUE + 1), dis.readUnsignedShort());
315 dis.readUnsignedShort();
323 dis.readUnsignedShort();
H A DOldRandomAccessFileTest.java887 * java.io.RandomAccessFile#readUnsignedShort()
895 65535, raf.readUnsignedShort());
898 raf.readUnsignedShort();
906 raf.readUnsignedShort();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DDataInputStreamTest.java445 * java.io.DataInputStream#readUnsignedShort()
451 assertEquals("Incorrect short read", 9875, dis.readUnsignedShort());
514 public int readUnsignedShort() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
612 dis.readUnsignedShort();
H A DRandomAccessFileTest.java421 * java.io.RandomAccessFile#readUnsignedShort()
424 // Test for method int java.io.RandomAccessFile.readUnsignedShort()
429 .readUnsignedShort());
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java507 // Test for method int java.io.ObjectInputStream.readUnsignedShort()
513 65535, ois.readUnsignedShort());
516 ois.readUnsignedShort();
524 ois.readUnsignedShort();

Completed in 130 milliseconds