Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_wal_hook

6658 ** ^The [sqlite3_wal_hook()] function is used to register a callback that
6668 ** is a copy of the third parameter passed to sqlite3_wal_hook() when
6684 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any
6687 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will
6688 ** those overwrite any prior [sqlite3_wal_hook()] settings.
6690 SQLITE_API void *sqlite3_wal_hook(
6700 ** [sqlite3_wal_hook()] that causes any database on [database connection] D
6708 ** registered using [sqlite3_wal_hook
6709 ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism
34812 /* Return the value to pass to a sqlite3_wal_hook callback, the
44271 /* Return the value to pass to a sqlite3_wal_hook callback, the
58788 ** invokes callbacks registered with sqlite3_wal_hook() as required.
84841 #define sqlite3_wal_hook sqlite3_api->wal_hook
85193 sqlite3_wal_hook,
106096 ** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint().
106117 ** Configure an sqlite3_wal_hook() callback to automatically checkpoint
106123 ** registered using sqlite3_wal_hook(). Likewise, registering a callback
106124 ** using sqlite3_wal_hook() disables the automatic checkpoint mechanism
106133 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));
106135 sqlite3_wal_hook(db, 0, 0);
106145 SQLITE_API void *sqlite3_wal_hook(