Lines Matching defs:sqlite3_wal_hook
9621 ** ^The [sqlite3_wal_hook()] function is used to register a callback that
9629 ** is a copy of the third parameter passed to sqlite3_wal_hook() when
9645 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any
9649 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will
9650 ** overwrite any prior [sqlite3_wal_hook()] settings.
9652 SQLITE_API void *sqlite3_wal_hook(
9663 ** [sqlite3_wal_hook()] that causes any database on [database connection] D
9671 ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback
9672 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
55459 /* Return the value to pass to a sqlite3_wal_hook callback, the
67351 /* Return the value to pass to a sqlite3_wal_hook callback, the
88476 ** invokes callbacks registered with sqlite3_wal_hook() as required.
132501 #define sqlite3_wal_hook sqlite3_api->wal_hook
132998 sqlite3_wal_hook,
175770 ** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint().
175791 ** Configure an sqlite3_wal_hook() callback to automatically checkpoint
175797 ** registered using sqlite3_wal_hook(). Likewise, registering a callback
175798 ** using sqlite3_wal_hook() disables the automatic checkpoint mechanism
175810 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));
175812 sqlite3_wal_hook(db, 0, 0);
175822 SQLITE_API void *sqlite3_wal_hook(