Lines Matching defs:sqlite3_wal_hook
7220 ** ^The [sqlite3_wal_hook()] function is used to register a callback that
7230 ** is a copy of the third parameter passed to sqlite3_wal_hook() when
7246 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any
7249 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will
7250 ** those overwrite any prior [sqlite3_wal_hook()] settings.
7252 SQLITE_API void *sqlite3_wal_hook(
7262 ** [sqlite3_wal_hook()] that causes any database on [database connection] D
7270 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback
7271 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
38420 /* Return the value to pass to a sqlite3_wal_hook callback, the
48320 /* Return the value to pass to a sqlite3_wal_hook callback, the
63060 ** invokes callbacks registered with sqlite3_wal_hook() as required.
91411 #define sqlite3_wal_hook sqlite3_api->wal_hook
91775 sqlite3_wal_hook,
113808 ** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint().
113829 ** Configure an sqlite3_wal_hook() callback to automatically checkpoint
113835 ** registered using sqlite3_wal_hook(). Likewise, registering a callback
113836 ** using sqlite3_wal_hook() disables the automatic checkpoint mechanism
113845 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));
113847 sqlite3_wal_hook(db, 0, 0);
113857 SQLITE_API void *sqlite3_wal_hook(