Home | History | Annotate | Download | only in io

Lines Matching refs:off

168      * @param  off   Offset from which to start reading characters
173 public void write(char cbuf[], int off, int len) throws IOException {
176 if ((off < 0) || (off > cbuf.length) || (len < 0) ||
177 ((off + len) > cbuf.length) || ((off + len) < 0)) {
188 out.write(cbuf, off, len);
192 int b = off, t = off + len;
214 * @param off Offset from which to start reading characters
219 public void write(String s, int off, int len) throws IOException {
223 int b = off, t = off + len;