Home | History | Annotate | Download | only in zip

Lines Matching refs:out

41      * implementation-defined default internal buffer size. {@code out} is a destination
44 * @param out the destination {@code OutputStream}
46 public InflaterOutputStream(OutputStream out) {
47 this(out, new Inflater());
52 * implementation-defined default internal buffer size. {@code out} is a destination
55 * @param out the destination {@code OutputStream}
58 public InflaterOutputStream(OutputStream out, Inflater inf) {
59 this(out, inf, DEFAULT_BUFFER_SIZE);
64 * given internal buffer size. {@code out} is a destination
67 * @param out the destination {@code OutputStream}
71 public InflaterOutputStream(OutputStream out, Inflater inf, int bufferSize) {
72 super(out);
73 if (out == null) {
74 throw new NullPointerException("out == null");
94 out.close();
102 out.flush();
152 out.write(buf, 0, inflated);