HomeSort by relevance Sort by last modified time
    Searched defs:writeIntLe (Results 1 - 6 of 6) sorted by null

  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSink.java 88 BufferedSink writeIntLe(int i) throws IOException;
GzipSink.java 125 sink.writeIntLe((int) crc.getValue()); // CRC of original data.
126 sink.writeIntLe(deflater.getTotalIn()); // Length of original data.
RealBufferedSink.java 143 @Override public BufferedSink writeIntLe(int i) throws IOException {
145 buffer.writeIntLe(i);
  /external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
BufferedSink.java 90 BufferedSink writeIntLe(int i) throws IOException;
GzipSink.java 127 sink.writeIntLe((int) crc.getValue()); // CRC of original data.
128 sink.writeIntLe(deflater.getTotalIn()); // Length of original data.
RealBufferedSink.java 144 @Override public BufferedSink writeIntLe(int i) throws IOException {
146 buffer.writeIntLe(i);

Completed in 183 milliseconds