Home
last modified time | relevance | path

Searched refs:gzipSink (Results 1 – 6 of 6) sorted by relevance

/external/okio/okio/src/jvmTest/java/okio/
DGzipSinkTest.java32 GzipSink gzipSink = new GzipSink(sink); in gzipGunzip() local
33 gzipSink.write(data, data.size()); in gzipGunzip()
34 gzipSink.close(); in gzipGunzip()
43 GzipSink gzipSink = new GzipSink(mockSink); in closeWithExceptionWhenWritingAndClosing() local
44 gzipSink.write(new Buffer().writeUtf8(repeat("a", SEGMENT_SIZE)), SEGMENT_SIZE); in closeWithExceptionWhenWritingAndClosing()
46 gzipSink.close(); in closeWithExceptionWhenWritingAndClosing()
DLargeStreamsTest.java76 @Test public void gzipSink() throws Exception { in gzipSink() method in LargeStreamsTest
79 GzipSink gzipSink = new GzipSink(pipe.sink()); in gzipSink() local
82 gzipSink.deflater().setLevel(Deflater.NO_COMPRESSION); in gzipSink()
83 Future<Long> future = readAllAndCloseAsync(randomSource(FOUR_GIB_PLUS_ONE), gzipSink); in gzipSink()
/external/okhttp/okio/okio/src/test/java/okio/
DGzipSinkTest.java31 GzipSink gzipSink = new GzipSink(sink); in gzipGunzip() local
32 gzipSink.write(data, data.size()); in gzipGunzip()
33 gzipSink.close(); in gzipGunzip()
42 GzipSink gzipSink = new GzipSink(mockSink); in closeWithExceptionWhenWritingAndClosing() local
43 gzipSink.write(new Buffer().writeUtf8(repeat('a', Segment.SIZE)), Segment.SIZE); in closeWithExceptionWhenWritingAndClosing()
45 gzipSink.close(); in closeWithExceptionWhenWritingAndClosing()
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
DRequestBodyCompression.java93 BufferedSink gzipSink = Okio.buffer(new GzipSink(sink)); in gzip() local
94 body.writeTo(gzipSink); in gzip()
95 gzipSink.close(); in gzip()
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
DBenchmark.java189 GzipSink gzipSink = new GzipSink(gzipBody); in newResponse() local
190 gzipSink.write(body, body.size()); in newResponse()
191 gzipSink.close(); in newResponse()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DURLConnectionTest.java3299 BufferedSink gzipSink = Okio.buffer(new GzipSink(result));
3300 gzipSink.writeUtf8(data);
3301 gzipSink.close();