Home | History | Annotate | Download | only in io

Lines Matching defs:out

58     private final SessionOutputBuffer out;
72 * @param out the session output buffer to wrap
76 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize)
80 this.out = out;
87 * @param out the output buffer to wrap
90 public ChunkedOutputStream(final SessionOutputBuffer out)
92 this(out, 2048);
97 * Writes the cache out onto the underlying stream
102 this.out.writeLine(Integer.toHexString(this.cachePosition));
103 this.out.write(this.cache, 0, this.cachePosition);
104 this.out.writeLine("");
118 this.out.writeLine(Integer.toHexString(this.cachePosition + len));
119 this.out.write(this.cache, 0, this.cachePosition);
120 this.out.write(bufferToAppend, off, len);
121 this.out.writeLine("");
127 this.out.writeLine("0");
128 this.out.writeLine("");
156 * not split, but rather written out as one large chunk.
182 this.out.flush();
193 this.out.flush();