OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:readShortLe
(Results
1 - 5
of
5
) sorted by null
/external/okhttp/okio/src/main/java/okio/
BufferedSource.java
50
short
readShortLe
() throws IOException;
GzipSource.java
125
int xlen = source.buffer().
readShortLe
();
158
checkEqual("FHCRC", source.
readShortLe
(), (short) crc.getValue());
RealBufferedSource.java
104
@Override public short
readShortLe
() throws IOException {
106
return buffer.
readShortLe
();
OkBuffer.java
264
@Override public short
readShortLe
() {
/external/okhttp/okio/src/test/java/okio/
OkBufferTest.java
441
@Test public void
readShortLe
() throws Exception {
446
assertEquals((short) 0xcdab, data.
readShortLe
());
447
assertEquals((short) 0x10ef, data.
readShortLe
());
Completed in 66 milliseconds