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

  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSink.java 26 public interface BufferedSink extends Sink {
30 BufferedSink write(ByteString byteString) throws IOException;
36 BufferedSink write(byte[] source) throws IOException;
42 BufferedSink write(byte[] source, int offset, int byteCount) throws IOException;
51 BufferedSink write(Source source, long byteCount) throws IOException;
54 BufferedSink writeUtf8(String string) throws IOException;
60 BufferedSink writeUtf8(String string, int beginIndex, int endIndex) throws IOException;
63 BufferedSink writeUtf8CodePoint(int codePoint) throws IOException;
66 BufferedSink writeString(String string, Charset charset) throws IOException;
72 BufferedSink writeString(String string, int beginIndex, int endIndex, Charset charset
    [all...]
  /external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
BufferedSink.java 28 public interface BufferedSink extends Sink {
32 BufferedSink write(ByteString byteString) throws IOException;
38 BufferedSink write(byte[] source) throws IOException;
44 BufferedSink write(byte[] source, int offset, int byteCount) throws IOException;
53 BufferedSink write(Source source, long byteCount) throws IOException;
56 BufferedSink writeUtf8(String string) throws IOException;
62 BufferedSink writeUtf8(String string, int beginIndex, int endIndex) throws IOException;
65 BufferedSink writeUtf8CodePoint(int codePoint) throws IOException;
68 BufferedSink writeString(String string, Charset charset) throws IOException;
74 BufferedSink writeString(String string, int beginIndex, int endIndex, Charset charset
    [all...]

Completed in 528 milliseconds