Lines Matching refs:off
88 * @param off the start offset of the data
96 byte b[], int off, int len,
112 * Reads into a byte array <i>b</i> at offset <i>off</i>,
115 * @param off the start offset of the data
121 public int read(byte b[], int off, int length) throws IOException {
122 return read(b, off, length, impl.getTimeout());
125 int read(byte b[], int off, int length, int timeout) throws IOException {
139 if (length <= 0 || off < 0 || off + length > b.length) {
152 n = socketRead0(fd, b, off, length, timeout);
173 n = socketRead0(fd, b, off, length, timeout);