Home
last modified time | relevance | path

Searched refs:writeLongLe (Results 1 – 4 of 4) sorted by relevance

/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSinkTest.java164 @Test public void writeLongLe() throws Exception {
165 sink.writeLongLe(0xabcdef0187654321L);
166 sink.writeLongLe(0xcafebabeb0b15c00L);
/external/okhttp/okio/okio/src/main/java/okio/
DRealBufferedSink.java155 @Override public BufferedSink writeLongLe(long v) throws IOException { in writeLongLe() method in RealBufferedSink
157 buffer.writeLongLe(v); in writeLongLe()
DBufferedSink.java94 BufferedSink writeLongLe(long v) throws IOException; in writeLongLe() method
DBuffer.java1027 @Override public Buffer writeLongLe(long v) {