Lines Matching defs:sqlite3_wal_checkpoint
9693 ** ^(The sqlite3_wal_checkpoint(D,X) is equivalent to
9696 ** In brief, sqlite3_wal_checkpoint(D,X) causes the content in the
9709 SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb);
63043 ** "PRAGMA wal_blocking_checkpoint" or calls the sqlite3_wal_checkpoint()
63058 ** then "PRAGMA journal_mode=WAL" is run and then sqlite3_wal_checkpoint()
63063 ** sqlite3_wal_checkpoint() call, but it happens very rarely.
65369 ** in response to an sqlite3_wal_checkpoint() request or the equivalent.
67216 ** This routine is called to implement sqlite3_wal_checkpoint() and
132500 #define sqlite3_wal_checkpoint sqlite3_api->wal_checkpoint
132997 sqlite3_wal_checkpoint,
175771 ** Invoke sqlite3_wal_checkpoint if the number of frames in the log file
175783 sqlite3_wal_checkpoint(db, zDb);
175913 SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb){
175914 /* EVIDENCE-OF: R-41613-20553 The sqlite3_wal_checkpoint(D,X) is equivalent to