Home | History | Annotate | Download | only in io

Lines Matching defs:out

56      * @param   out   the underlying output stream.
58 public BufferedOutputStream(OutputStream out) {
59 this(out, 8192);
67 * @param out the underlying output stream.
71 public BufferedOutputStream(OutputStream out, int size) {
72 super(out);
82 out.write(buf, 0, count);
122 out.write(b, off, len);
134 * output bytes to be written out to the underlying output stream.
137 * @see java.io.FilterOutputStream#out
141 out.flush();