Home | History | Annotate | Download | only in SQLite

Lines Matching refs:off

127      * @param off offset into byte array
132 public int read(byte b[], int off, int len) throws IOException {
133 if (off + len > b.length) {
134 len = b.length - off;
142 int n = blob.read(b, off, pos, len);
221 * @param off offset within byte array
225 public void write(byte[] b, int off, int len) throws IOException {
227 if (off + len > b.length) {
228 len = b.length - off;
233 pos += blob.write(b, off, pos, len);
289 * @param off offset into byte array
295 native int write(byte[] b, int off, int pos, int len) throws IOException;
300 * @param off offset into byte array
306 native int read(byte[] b, int off, int pos, int len) throws IOException;