Searched refs:sqlite3_wal_hook (Results 1 – 9 of 9) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | e_walhook.test | 19 # EVIDENCE-OF: R-00752-43975 The sqlite3_wal_hook() function is used to 140 # EVIDENCE-OF: R-10466-53920 Calling sqlite3_wal_hook() replaces any 166 # sqlite3_wal_hook() and will overwrite any prior sqlite3_wal_hook() 184 # sqlite3_wal_hook() when registering the callback.
|
| H A D | e_walauto.test | 96 # wrapper around sqlite3_wal_hook() that causes any database on database 135 # replaces any existing callback registered using sqlite3_wal_hook(). 153 # sqlite3_wal_hook() disables the automatic checkpoint mechanism
|
| H A D | tt3_checkpoint.c | 113 sqlite3_wal_hook(db.db, checkpoint_starvation_walhook, (void *)p); in checkpoint_starvation_main()
|
| H A D | walhook.test | 16 # sqlite3_wal_hook() mechanism, including the sqlite3_wal_autocheckpoint()
|
| /sqlite-3.40.0/src/ |
| H A D | loadext.c | 375 sqlite3_wal_hook,
|
| H A D | main.c | 2380 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame)); in sqlite3_wal_autocheckpoint() 2382 sqlite3_wal_hook(db, 0, 0); in sqlite3_wal_autocheckpoint() 2392 void *sqlite3_wal_hook( in sqlite3_wal_hook() function
|
| H A D | sqlite3ext.h | 572 #define sqlite3_wal_hook sqlite3_api->wal_hook macro
|
| H A D | tclsqlite.c | 1915 sqlite3_wal_hook(db, (pDb->pWalHook?DbWalHandler:0), pDb); in DbHookCmd()
|
| H A D | sqlite.h.in | 9260 ** ^The [sqlite3_wal_hook()] function is used to register a callback that 9268 ** is a copy of the third parameter passed to sqlite3_wal_hook() when 9284 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any 9288 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will 9289 ** overwrite any prior [sqlite3_wal_hook()] settings. 9291 void *sqlite3_wal_hook( 9302 ** [sqlite3_wal_hook()] that causes any database on [database connection] D 9310 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback 9311 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
|