Searched refs:bts (Results 1 - 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DTeeInputStream.java117 * @param bts byte buffer
123 public int read(byte[] bts, int st, int end) throws IOException { argument
124 int n = super.read(bts, st, end);
126 branch.write(bts, st, n);
135 * @param bts byte buffer
139 public int read(byte[] bts) throws IOException { argument
140 int n = super.read(bts);
142 branch.write(bts, 0, n);
H A DProxyInputStream.java58 * @param bts the buffer to read the bytes into
62 public int read(byte[] bts) throws IOException { argument
63 return in.read(bts);
68 * @param bts the buffer to read the bytes into
74 public int read(byte[] bts, int st, int end) throws IOException { argument
75 return in.read(bts, st, end);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DProxyOutputStream.java55 * @param bts the bytes to write
58 public void write(byte[] bts) throws IOException { argument
59 out.write(bts);
64 * @param bts the bytes to write
69 public void write(byte[] bts, int st, int end) throws IOException { argument
70 out.write(bts, st, end);

Completed in 69 milliseconds