Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_wal_checkpoint

10365 ** ^(The sqlite3_wal_checkpoint(D,X) is equivalent to
10368 ** In brief, sqlite3_wal_checkpoint(D,X) causes the content in the
10381 SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb);
67089 ** "PRAGMA wal_blocking_checkpoint" or calls the sqlite3_wal_checkpoint()
67104 ** then "PRAGMA journal_mode=WAL" is run and then sqlite3_wal_checkpoint()
67109 ** sqlite3_wal_checkpoint() call, but it happens very rarely.
69585 ** in response to an sqlite3_wal_checkpoint() request or the equivalent.
71707 ** This routine is called to implement sqlite3_wal_checkpoint() and
142808 #define sqlite3_wal_checkpoint sqlite3_api->wal_checkpoint
143317 sqlite3_wal_checkpoint,
189568 ** Invoke sqlite3_wal_checkpoint if the number of frames in the log file
189580 sqlite3_wal_checkpoint(db, zDb);
189719 SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb){
189720 /* EVIDENCE-OF: R-41613-20553 The sqlite3_wal_checkpoint(D,X) is equivalent to