Home | History | Annotate | Download | only in output

Lines Matching refs:write

31     /** the second OutputStream to write to */

45 * Write the bytes to both streams.
46 * @param b the bytes to write
49 public synchronized void write(byte[] b) throws IOException {
50 super.write(b);
51 this.branch.write(b);
55 * Write the specified bytes to both streams.
56 * @param b the bytes to write
58 * @param len The number of bytes to write
61 public synchronized void write(byte[] b, int off, int len) throws IOException {
62 super.write(b, off, len);
63 this.branch.write(b, off, len);
67 * Write a byte to both streams.
68 * @param b the byte to write
71 public synchronized void write(int b) throws IOException {
72 super.write(b);
73 this.branch.write(b);