Home
last modified time | relevance | path

Searched refs:readShortLe (Results 1 – 5 of 5) sorted by relevance

/external/okhttp/okio/okio/src/main/java/okio/
DGzipSource.java130 int xlen = source.buffer().readShortLe(); in consumeHeader()
163 checkEqual("FHCRC", source.readShortLe(), (short) crc.getValue()); in consumeHeader()
DBufferedSource.java58 short readShortLe() throws IOException; in readShortLe() method
DRealBufferedSource.java226 @Override public short readShortLe() throws IOException { in readShortLe() method in RealBufferedSource
228 return buffer.readShortLe(); in readShortLe()
DBuffer.java398 @Override public short readShortLe() {
/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSourceTest.java138 @Test public void readShortLe() throws Exception { in readShortLe() method in BufferedSourceTest
142 assertEquals((short) 0xcdab, source.readShortLe()); in readShortLe()
143 assertEquals((short) 0x10ef, source.readShortLe()); in readShortLe()