/external/chromium_org/third_party/sqlite/src/test/ |
D | incrblob3.test | 90 list [catch {sqlite3_blob_read $::blob 0 10} msg] $msg 105 # incrblob3-3.2: sqlite3_blob_read() 114 list [catch {sqlite3_blob_read {} 0 10} msg] $msg 132 list [catch { sqlite3_blob_read $::blob -1 10 } msg] $msg 135 list [catch { sqlite3_blob_read $::blob 0 -10 } msg] $msg 138 list [catch { sqlite3_blob_read $::blob 95 10 } msg] $msg 160 list [catch { sqlite3_blob_read $::blob 0 10 } msg] $msg
|
D | incrblob2.test | 154 set rc [catch {sqlite3_blob_read $handles($ii) $iOffset $nByte} msg] 314 sqlite3_blob_read $rdHandle 0 100 324 sqlite3_blob_read $rdHandle 0 2 330 sqlite3_blob_read $rdHandle 2 4 396 sqlite3_blob_read $h 0 20 405 sqlite3_blob_read $h 0 20 411 set rc [catch {sqlite3_blob_read $h 0 20} msg]
|
D | incrblob_err.test | 115 sqlite3_blob_read $::blob [expr 500*1020-20] 20
|
D | incrblob.test | 351 set rc [catch { sqlite3_blob_read $::blob 10 100 } msg] 552 binary scan [sqlite3_blob_read $::b 5000 5] c* c 561 set rc [catch { sqlite3_blob_read $::b 5000 5 } msg]
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | loadext.c | 108 #define sqlite3_blob_read 0 macro 288 sqlite3_blob_read,
|
D | vdbeblob.c | 404 int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ in sqlite3_blob_read() function
|
D | sqlite3ext.h | 363 #define sqlite3_blob_read sqlite3_api->blob_read macro
|
D | tclsqlite.c | 231 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek); in incrblobInput()
|
D | sqlite.h.in | 4836 ** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces 4879 ** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for 4923 ** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or 4987 ** ^(On success, sqlite3_blob_read() returns SQLITE_OK. 4997 int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); 5033 ** See also: [sqlite3_blob_read()].
|
D | test1.c | 1710 rc = sqlite3_blob_read(pBlob, zBuf, nByte, iOffset); in test_blob_read()
|
/external/sqlite/dist/ |
D | sqlite3ext.h | 401 #define sqlite3_blob_read sqlite3_api->blob_read macro
|
D | sqlite3.h | 5743 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
|
D | sqlite3.c | 5858 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); 74967 SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ 97419 #define sqlite3_blob_read sqlite3_api->blob_read 97598 #define sqlite3_blob_read 0 97779 sqlite3_blob_read, 138010 rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0); 138038 rc = sqlite3_blob_read(
|
/external/sqlite/dist/orig/ |
D | sqlite3ext.h | 401 #define sqlite3_blob_read sqlite3_api->blob_read macro
|
D | sqlite3.h | 5743 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
|
D | sqlite3.c | 5858 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); 74947 SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ 97399 #define sqlite3_blob_read sqlite3_api->blob_read 97578 #define sqlite3_blob_read 0 97759 sqlite3_blob_read, 137978 rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0); 138006 rc = sqlite3_blob_read(
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.h | 5002 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
|
D | sqlite3.c | 5545 SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); 68832 SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ 86845 #define sqlite3_blob_read sqlite3_api->blob_read 86992 #define sqlite3_blob_read 0 87172 sqlite3_blob_read, 120800 rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0);
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3_write.c | 883 rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0); in sqlite3Fts3ReadBlock()
|
/external/javasqlite/src/main/native/ |
D | sqlite_jni.c | 4493 ret = sqlite3_blob_read(bl->blob, buf, len, pos); in Java_SQLite_Blob_read()
|