HomeSort by relevance Sort by last modified time
    Searched refs:InflaterSource (Results 1 - 4 of 4) sorted by null

  /external/okhttp/okio/src/main/java/okio/
InflaterSource.java 27 public final class InflaterSource implements Source {
39 public InflaterSource(Source source, Inflater inflater) {
48 InflaterSource(BufferedSource source, Inflater inflater) {
GzipSource.java 39 * by deflated bytes (which we consume via an InflaterSource), followed by a
51 private final InflaterSource inflaterSource;
59 this.inflaterSource = new InflaterSource(this.source, inflater);
75 long result = inflaterSource.read(sink, byteCount);
178 inflaterSource.close();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
NameValueBlockReader.java 11 import okio.InflaterSource;
24 private final InflaterSource inflaterSource;
27 * How many compressed bytes must be read into inflaterSource before
72 this.inflaterSource = new InflaterSource(throttleSource, inflater);
73 this.source = Okio.buffer(inflaterSource);
105 inflaterSource.refill();
  /external/okhttp/okio/src/test/java/okio/
InflaterSourceTest.java 97 InflaterSource source = new InflaterSource(deflated, new Inflater());

Completed in 68 milliseconds