Home
last modified time | relevance | path

Searched refs:sqlite3_blob_read (Results 1 – 16 of 16) sorted by relevance

/sqlite-3.40.0/test/
H A Dincrblob2.test154 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
332 sqlite3_blob_read $rdHandle 2147483647 2147483647
344 sqlite3_blob_read $rdHandle 2147483647 100
352 sqlite3_blob_read $rdHandle 2 4
364 sqlite3_blob_read $rdHandle 2 4
431 sqlite3_blob_read $h 0 20
440 sqlite3_blob_read $h 0 20
446 set rc [catch {sqlite3_blob_read $h 0 20} msg]
H A De_blobopen.test81 set data [sqlite3_blob_read $B 0 $nByte]
143 sqlite3_blob_read $B 0 $n
373 sqlite3_blob_read $B 0 10
378 sqlite3_blob_read $B 0 10
382 list [catch { sqlite3_blob_read $B 0 10 } msg] $msg
390 sqlite3_blob_read $B 0 10
395 sqlite3_blob_read $B 0 10
407 sqlite3_blob_read $B 0 10
412 sqlite3_blob_read $B 0 10
529 sqlite3_blob_read $B 0 24
[all …]
H A Dincrblob3.test96 list [catch {sqlite3_blob_read $::blob 0 10} msg] $msg
111 # incrblob3-3.2: sqlite3_blob_read()
120 list [catch {sqlite3_blob_read {} 0 10} msg] $msg
138 list [catch { sqlite3_blob_read $::blob -1 10 } msg] $msg
141 list [catch { sqlite3_blob_read $::blob 0 -10 } msg] $msg
144 list [catch { sqlite3_blob_read $::blob 95 10 } msg] $msg
166 list [catch { sqlite3_blob_read $::blob 0 10 } msg] $msg
H A Dincrblob.test360 set rc [catch { sqlite3_blob_read $::blob 10 100 } msg]
555 binary scan [sqlite3_blob_read $::b 5000 5] c* c
564 set rc [catch { sqlite3_blob_read $::b 5000 5 } msg]
H A Dincrblob_err.test118 sqlite3_blob_read $::blob [expr 500*1020-20] 20
H A Dkvtest.c1015 rc = sqlite3_blob_read(pBlob, pData, (int)nData, 0); in runMain()
/sqlite-3.40.0/src/
H A Dloadext.c109 #define sqlite3_blob_read 0 macro
294 sqlite3_blob_read,
H A Dtest_blob.c248 rc = sqlite3_blob_read(pBlob, zBuf, nByte, iOffset); in test_blob_read()
H A Dvdbeblob.c453 int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ in sqlite3_blob_read() function
H A Dsqlite3ext.h521 #define sqlite3_blob_read sqlite3_api->blob_read macro
H A Dtclsqlite.c284 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek); in incrblobInput()
H A Dsqlite.h.in7426 ** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces
7482 ** [sqlite3_blob_read()] interface and modified by using
7493 ** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for
7512 ** [sqlite3_blob_reopen()], [sqlite3_blob_read()],
7541 ** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or
7606 ** ^(On success, sqlite3_blob_read() returns SQLITE_OK.
7616 int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
7656 ** See also: [sqlite3_blob_read()].
/sqlite-3.40.0/ext/misc/
H A Dblobio.c75 rc = sqlite3_blob_read(pBlob, aData, nData, iOfst); in readblobFunc()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_write.c1233 rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0); in sqlite3Fts3ReadBlock()
1263 rc = sqlite3_blob_read( in fts3SegReaderIncrRead()
/sqlite-3.40.0/ext/rtree/
H A Drtree.c756 rc = sqlite3_blob_read(pRtree->pNodeBlob, pNode->zData, in nodeAcquire()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_index.c683 rc = sqlite3_blob_read(p->pReader, aOut, nByte, 0); in fts5DataRead()