Searched refs:branch (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Email/src/org/apache/commons/io/input/ |
D | TeeInputStream.java | 43 private final OutputStream branch; field in TeeInputStream 59 public TeeInputStream(InputStream input, OutputStream branch) { in TeeInputStream() argument 60 this(input, branch, false); in TeeInputStream() 75 InputStream input, OutputStream branch, boolean closeBranch) { in TeeInputStream() argument 77 this.branch = branch; in TeeInputStream() 93 branch.close(); in close() 108 branch.write(ch); in read() 126 branch.write(bts, st, n); in read() 142 branch.write(bts, 0, n); in read()
|
/packages/apps/Email/src/org/apache/commons/io/output/ |
D | TeeOutputStream.java | 32 protected OutputStream branch; field in TeeOutputStream 39 public TeeOutputStream( OutputStream out, OutputStream branch ) { in TeeOutputStream() argument 41 this.branch = branch; in TeeOutputStream() 51 this.branch.write(b); in write() 63 this.branch.write(b, off, len); in write() 73 this.branch.write(b); in write() 82 this.branch.flush(); in flush() 91 this.branch.close(); in close()
|