Home | History | Annotate | Download | only in io

Lines Matching refs:out

53     private final SessionOutputBuffer out;
67 * @param out the session output buffer to wrap
71 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize)
75 this.out = out;
82 * @param out the output buffer to wrap
85 public ChunkedOutputStream(final SessionOutputBuffer out)
87 this(out, 2048);
92 * Writes the cache out onto the underlying stream
97 this.out.writeLine(Integer.toHexString(this.cachePosition));
98 this.out.write(this.cache, 0, this.cachePosition);
99 this.out.writeLine("");
113 this.out.writeLine(Integer.toHexString(this.cachePosition + len));
114 this.out.write(this.cache, 0, this.cachePosition);
115 this.out.write(bufferToAppend, off, len);
116 this.out.writeLine("");
122 this.out.writeLine("0");
123 this.out.writeLine("");
151 * not split, but rather written out as one large chunk.
177 this.out.flush();
188 this.out.flush();