Lines Matching refs:out
59 * the 3-argument constructor GZIPOutputStream(out, size, false).
61 * @param out the output stream
67 public GZIPOutputStream(OutputStream out, int size) throws IOException {
68 this(out, size, false);
75 * @param out the output stream
88 public GZIPOutputStream(OutputStream out, int size, boolean syncFlush)
91 super(out, new Deflater(Deflater.DEFAULT_COMPRESSION, true),
104 * the 2-argument constructor GZIPOutputStream(out, false).
106 * @param out the output stream
109 public GZIPOutputStream(OutputStream out) throws IOException {
110 this(out, 512, false);
117 * @param out the output stream
129 public GZIPOutputStream(OutputStream out, boolean syncFlush)
132 this(out, 512, syncFlush);
165 out.write(buf, 0, len);
169 out.write(buf, 0, len);
175 out.write(trailer);
183 out.write(new byte[] {