Searched refs:sqlite3_blob_write (Results 1 – 18 of 18) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | e_blobopen.test | 149 list [catch { sqlite3_blob_write $B 0 xxx 3 } msg] $msg 158 list [catch { sqlite3_blob_write $B 0 xxx 3 } msg] $msg 424 sqlite3_blob_write $B 0 "abcdefghij" 429 sqlite3_blob_write $B 0 "ABCDEFGHIJ" 433 list [catch { sqlite3_blob_write $B 0 "0987654321" } msg] $msg 441 sqlite3_blob_write $B 0 "abcdefghij" 446 sqlite3_blob_write $B 0 "ABCDEFGHIJ" 458 sqlite3_blob_write $B 0 "abcdefghij" 463 sqlite3_blob_write $B 0 "ABCDEFGHIJ" 485 sqlite3_blob_write $B 0 "xxxxx" 5 [all …]
|
| H A D | incrblob3.test | 99 list [catch {sqlite3_blob_write $::blob 0 "abcd"} msg] $msg 112 # incrblob3-3.3: sqlite3_blob_write() 124 list [catch {sqlite3_blob_write {} 0 "abcd"} msg] $msg 147 list [catch { sqlite3_blob_write $::blob -1 "abcdefghij" 10 } msg] $msg 150 list [catch { sqlite3_blob_write $::blob 0 "abcdefghij" -10 } msg] $msg 153 list [catch { sqlite3_blob_write $::blob 95 "abcdefghij" } msg] $msg
|
| H A D | e_blobwrite.test | 42 # EVIDENCE-OF: R-45864-01884 On success, sqlite3_blob_write() returns 47 # Tcl sqlite3_blob_write() wrapper uses an empty string in place of 51 set res [sqlite3_blob_write $B $iOffset $blob $nData] 69 # In cases where the underlying sqlite3_blob_write() function returns 82 set cmd [list sqlite3_blob_write $B $iOffset $blob $nData]
|
| H A D | incrblob2.test | 183 set rc [catch {sqlite3_blob_write $::handles(3) 10 HELLO} msg] 316 sqlite3_blob_write $wrHandle 0 ABCDEF 351 sqlite3_blob_write $wrHandle 0 ZZZZZZZZZZ 359 sqlite3_blob_write $wrHandle 2147483647 YYYYYYYYYYYYYYYYYY
|
| H A D | incrblob.test | 248 sqlite3_blob_write $::blob 20 "qwertyuioplkjhgfds" 642 set rc [catch {sqlite3_blob_write $::b 10 HELLO} msg] 653 # sqlite3_blob_write() are less than zero, SQLITE_ERROR is returned. 659 set rc [catch {sqlite3_blob_write $::b 10 HELLO -1} msg] 666 set rc [catch {sqlite3_blob_write $::b -1 HELLO 5} msg] 676 set rc [catch {sqlite3_blob_write $::b 0 etilqs 6} msg]
|
| H A D | corruptK.test | 46 # we can use sqlite3_blob_write() to manipulate the size field of 49 # Then use sqlite3_blob_write() to set the size of said free slot
|
| H A D | e_blobbytes.test | 75 list [catch { sqlite3_blob_write $B 86 "1" 1 } msg] $msg
|
| H A D | incrblob_err.test | 134 sqlite3_blob_write $::blob [expr 500*1020-20] 12345678900987654321
|
| H A D | e_blobclose.test | 131 sqlite3_blob_write $B 0 "abcdefghij" 10
|
| H A D | kvtest.c | 1009 rc = sqlite3_blob_write(pBlob, pData, (int)nData, 0); in runMain()
|
| /sqlite-3.40.0/src/ |
| H A D | loadext.c | 110 #define sqlite3_blob_write 0 macro 295 sqlite3_blob_write,
|
| H A D | test_blob.c | 300 rc = sqlite3_blob_write(pBlob, zBuf, nBuf, iOffset); in test_blob_write()
|
| H A D | vdbeblob.c | 460 int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){ in sqlite3_blob_write() function
|
| H A D | sqlite3ext.h | 522 #define sqlite3_blob_write sqlite3_api->blob_write macro
|
| H A D | tclsqlite.c | 317 rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek); in incrblobOutput()
|
| H A D | sqlite.h.in | 7426 ** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces 7483 ** [sqlite3_blob_write()]. The [BLOB handle] can be moved to a 7493 ** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for 7513 ** [sqlite3_blob_bytes()], [sqlite3_blob_write()]. 7541 ** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or 7614 ** See also: [sqlite3_blob_write()]. 7626 ** ^(On success, sqlite3_blob_write() returns SQLITE_OK. 7658 int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset); 10095 ** When the [sqlite3_blob_write()] API is used to update a blob column, 10099 ** sqlite3_blob_write() API, the [sqlite3_preupdate_blobwrite()] returns
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | blobio.c | 126 rc = sqlite3_blob_write(pBlob, aData, nData, iOfst); in writeblobFunc()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_index.c | 5768 sqlite3_blob_write(pBlob, aCookie, 4, 0); in sqlite3Fts5IndexSetCookie()
|