Searched refs:branch (Results 1 - 2 of 2) sorted by relevance
/packages/apps/Email/src/org/apache/commons/io/input/ |
H A D | TeeInputStream.java | 43 private final OutputStream branch;
field in class:TeeInputStream 57 * @param branch output stream that will receive a copy of all bytes read
59 public TeeInputStream(InputStream input, OutputStream branch) {
argument 60 this(input, branch, false);
70 * @param branch output stream that will receive a copy of all bytes read
75 InputStream input, OutputStream branch, boolean closeBranch) {
77 this.branch = branch;
93 branch.close();
108 branch 74 TeeInputStream( InputStream input, OutputStream branch, boolean closeBranch) argument [all...] |
/packages/apps/Email/src/org/apache/commons/io/output/ |
H A D | TeeOutputStream.java | 32 protected OutputStream branch;
field in class:TeeOutputStream 37 * @param branch the second OutputStream
39 public TeeOutputStream( OutputStream out, OutputStream branch ) {
41 this.branch = branch;
51 this.branch.write(b);
63 this.branch.write(b, off, len);
73 this.branch.write(b);
82 this.branch.flush();
91 this.branch [all...] |
Completed in 29 milliseconds