Searched refs:infl (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/zip/
H A DInflaterOutputStream.java86 * @param infl decompressor ("inflater") for this stream
87 * @throws NullPointerException if {@code out} or {@code infl} is null
89 public InflaterOutputStream(OutputStream out, Inflater infl) { argument
90 this(out, infl, 512);
98 * @param infl decompressor ("inflater") for this stream
101 * @throws NullPointerException if {@code out} or {@code infl} is null
103 public InflaterOutputStream(OutputStream out, Inflater infl, int bufLen) { argument
109 if (infl == null)
115 inf = infl;

Completed in 22 milliseconds