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
38448 /* Return the value to pass to a sqlite3_wal_hook callback, the
48348 /* Return the value to pass to a sqlite3_wal_hook callback, the
63088 ** invokes callbacks registered with sqlite3_wal_hook() as required.
91447 #define sqlite3_wal_hook sqlite3_api->wal_hook
91811 sqlite3_wal_hook,
113844 ** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint().
113865 ** Configure an sqlite3_wal_hook() callback to automatically checkpoint
113871 ** registered using sqlite3_wal_hook(). Likewise, registering a callback
113872 ** using sqlite3_wal_hook() disables the automatic checkpoint mechanism
113881 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));
113883 sqlite3_wal_hook(db, 0, 0);
113893 SQLITE_API void *sqlite3_wal_hook(