OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:writeShortLe
(Results
1 - 3
of
3
) sorted by null
/external/okhttp/okio/src/main/java/okio/
BufferedSink.java
53
BufferedSink
writeShortLe
(int s) throws IOException;
RealBufferedSink.java
83
@Override public BufferedSink
writeShortLe
(int s) throws IOException {
85
buffer.
writeShortLe
(s);
/external/okhttp/okio/src/test/java/okio/
OkBufferTest.java
368
@Test public void
writeShortLe
() throws Exception {
370
data.
writeShortLe
(0xabcd);
371
data.
writeShortLe
(0x4321);
Completed in 39 milliseconds