OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:readShortLe
(Results
1 - 3
of
3
) sorted by null
/external/okhttp/okio/src/main/java/okio/
BufferedSource.java
50
short
readShortLe
() throws IOException;
RealBufferedSource.java
104
@Override public short
readShortLe
() throws IOException {
106
return buffer.
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 145 milliseconds