Lines Matching refs:sqlite3_wal_hook
9853 ** ^The [sqlite3_wal_hook()] function is used to register a callback that
9861 ** is a copy of the third parameter passed to sqlite3_wal_hook() when
9877 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any
9881 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will
9882 ** overwrite any prior [sqlite3_wal_hook()] settings.
9884 SQLITE_API void *sqlite3_wal_hook(
9895 ** [sqlite3_wal_hook()] that causes any database on [database connection] D
9903 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback
9904 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
57082 /* Return the value to pass to a sqlite3_wal_hook callback, the
69292 /* Return the value to pass to a sqlite3_wal_hook callback, the
91098 ** invokes callbacks registered with sqlite3_wal_hook() as required.
137012 #define sqlite3_wal_hook sqlite3_api->wal_hook
137511 sqlite3_wal_hook,
182186 ** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint().
182207 ** Configure an sqlite3_wal_hook() callback to automatically checkpoint
182213 ** registered using sqlite3_wal_hook(). Likewise, registering a callback
182214 ** using sqlite3_wal_hook() disables the automatic checkpoint mechanism
182226 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));
182228 sqlite3_wal_hook(db, 0, 0);
182238 SQLITE_API void *sqlite3_wal_hook(