Home | History | Annotate | Download | only in SQLite

Lines Matching refs:read

19      * Read position, file pointer.
95 * Read single byte from blob.
96 * @return byte read
99 public int read() throws IOException {
101 int n = blob.read(b, 0, pos, b.length);
110 * Read byte array from blob.
112 * @return number of bytes read
115 public int read(byte b[]) throws IOException {
116 int n = blob.read(b, 0, pos, b.length);
125 * Read slice of byte array from blob.
128 * @param len length to be read
129 * @return number of bytes read
132 public int read(byte b[], int off, int len) throws IOException {
142 int n = blob.read(b, off, pos, len);
165 * Read position, file pointer.
298 * Internal blob read method.
306 native int read(byte[] b, int off, int pos, int len) throws IOException;