| /sqlite-3.40.0/test/ |
| H A D | vtab7.test | 13 # virtual table xSync() callback. 33 # xSync() xSync echo($tablename) 83 set ::callbacks(xSync,abc) { 91 } {xSync} 97 } {xSync xSync} 103 } {xSync xSync xSync} 107 set ::callbacks(xSync,abc) { 121 set ::callbacks(xSync,abc) { 175 set ::callbacks(xSync,abc) { 184 set ::callbacks(xSync,abc) { [all …]
|
| H A D | vtab4.test | 15 # xSync 45 # to xBegin, xSync and xCommit. 53 } {xBegin echo(treal) xSync echo(treal) xCommit echo(treal)} 63 xSync echo(treal) \ 75 xSync echo(treal) \ 91 } {xBegin echo(treal) xSync echo(treal) xCommit echo(treal)} 114 xSync echo(sreal) \ 115 xSync echo(treal) \ 169 } {xBegin echo(treal) xSync echo(treal) xRollback echo(treal)} 187 xSync echo(treal) \ [all …]
|
| H A D | walvfs.test | 28 tvfs script xSync 29 tvfs filter xSync 31 proc xSync {method file args} {
|
| H A D | pagerfault3.test | 47 # an IO error is injected into the final xSync() of the commit, the pager
|
| H A D | walcrash4.test | 26 # xSync() call was omitted.
|
| H A D | vtabC.test | 12 # focus of this file is is verifying that the xUpdate, xSync, xCommit
|
| H A D | e_walckpt.test | 335 # Set up a callback function for xSync and xWrite calls made during 343 if {$method == "xSync" && $tail == "test.db"} { 369 #tvfs filter xSync
|
| H A D | vacuum-into.test | 139 tvfs filter xSync
|
| H A D | vtab1.test | 352 xSync echo(treal) \ 895 xSync echo(real_abc) \ 934 xSync echo(r) \ 1240 xSync \
|
| H A D | wal3.test | 199 # in WAL mode the xSync method is invoked as expected for each of 229 T filter xSync
|
| H A D | walro.test | 290 tv filter xSync
|
| /sqlite-3.40.0/ext/rbu/ |
| H A D | rbucrash.test | 82 # crash is simulated during each xSync() of file test.db2. 89 # xSync() is called on test.db2.
|
| H A D | sqlite3rbu.c | 3078 p->rc = pWal->pMethods->xSync(pWal, SQLITE_SYNC_NORMAL); in rbuSetupCheckpoint() 3725 p->rc = pDb->pMethods->xSync(pDb, SQLITE_SYNC_NORMAL); in sqlite3rbu_step() 4221 p->rc = pDb->pMethods->xSync(pDb, SQLITE_SYNC_NORMAL); in sqlite3rbu_close() 4356 rc = pDb->pMethods->xSync(pDb, SQLITE_SYNC_NORMAL); in sqlite3rbu_savestate() 4764 return p->pReal->pMethods->xSync(p->pReal, flags); in rbuVfsSync()
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | vtshim.c | 333 rc = pAux->pMod->xSync(pVtab->pChild); in vtshimSync() 499 pAux->sSelf.xSync = p->xSync ? vtshimSync : 0; in sqlite3_create_disposable_module()
|
| H A D | appendvfs.c | 312 return pFile->pMethods->xSync(pFile, flags); in apndSync()
|
| H A D | vfsstat.c | 303 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vstatSync()
|
| H A D | cksumvfs.c | 512 return pFile->pMethods->xSync(pFile, flags); in cksmSync()
|
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-opfs.js | 297 state.opIds.xSync = i++; 750 xSync: function(pFile,flags){ method 751 ++metrics.xSync.count; 1203 rc = ioSyncWrappers.xSync(sq3File.pointer, 0);
|
| /sqlite-3.40.0/ext/lsm1/ |
| H A D | lsm.h | 59 int (*xSync)(lsm_file *); member
|
| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest_tdb3.c | 286 rc = pRealEnv->xSync(p->pReal); in testEnvSync() 294 return pRealEnv->xSync(p->pReal); in testEnvSync() 990 pDb->env.xSync = testEnvSync; in testLsmOpen()
|
| H A D | lsmtest_tdb4.c | 258 rc = p->pVfs->xSync(p->pFile); in btVfsSync() 730 p->env.xSync = btVfsSync; in test_bt_open()
|
| /sqlite-3.40.0/src/ |
| H A D | test_vfstrace.c | 376 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfstraceSync() 627 pNew->xSync = vfstraceSync; in vfstraceOpen()
|
| H A D | os.c | 101 return flags ? id->pMethods->xSync(id, flags) : SQLITE_OK; in sqlite3OsSync()
|
| H A D | test_multiplex.c | 847 int rc2 = pSubOpen->pMethods->xSync(pSubOpen, flags); in multiplexSync() 1180 gMultiplex.sIoMethodsV1.xSync = multiplexSync; in sqlite3_multiplex_initialize()
|
| /sqlite-3.40.0/doc/ |
| H A D | pager-invariants.txt | 3 Otherwise, the page is not synced until the xSync method of the VFS
|