Home | History | Annotate | Download | only in dist

Lines Matching full:ahead

1324 ** persistent [WAL | Write AHead Log] setting.  By default, the auxiliary
1325 ** write ahead log and shared memory files used for transaction control
2423 ** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY]
6943 ** <li> the destination database is using write-ahead-log journaling
7218 ** CAPI3REF: Write-Ahead Log Commit Hook
7222 ** [write-ahead log] (i.e. whenever a transaction is committed in
7234 ** is the number of pages currently in the write-ahead log file,
7245 ** A single database handle may have at most a single write-ahead log callback
7247 ** previously registered write-ahead log callback. ^Note that the
7265 ** more frames in the [write-ahead log] file. ^Passing zero or
7292 ** [WAL | write-ahead log mode] then this interface is a harmless no-op.
8927 #define PAGER_JOURNALMODE_WAL 5 /* Use write-ahead logging */
24140 ** If any sibling already holds an exclusive lock, go ahead and return
26516 /* If control gets to this point, then actually go ahead and make
27726 /* If control gets to this point, then actually go ahead and make
29206 ** If any sibling already holds an exclusive lock, go ahead and return
29471 ** to go ahead and define the sqlite3_io_methods and finder function
34780 ** If any sibling already holds an exclusive lock, go ahead and return
38334 ** This header file defines the interface to the write-ahead logging
38372 /* Connection to a write-ahead log (WAL) file.
38377 /* Open and close a connection to a write-ahead log. */
38394 /* Read a page from the write-ahead log, if it is present. */
38420 Wal *pWal, /* Write-ahead log connection */
39124 Wal *pWal; /* Write-ahead log used by "journal_mode=wal" */
39125 char *zWal; /* File name for write-ahead log */
39216 ** Return true if this pager uses a write-ahead log instead of the usual
41261 /* Try to pull the page from the write-ahead log. */
45161 ** primitives necessary for write-ahead logging.
45358 ** This file contains the implementation of a write-ahead log (WAL) used in
45361 ** WRITE-AHEAD LOG (WAL) FILE FORMAT
45726 /* Size of write ahead log header, including checksum. */
45742 ** Return the offset of frame iFrame in the write-ahead log file,
45744 ** is to the start of the write-ahead log frame-header.
45751 ** An open write-ahead log file is represented by an instance of the
46013 Wal *pWal, /* The write-ahead log */
46040 Wal *pWal, /* The write-ahead log */
46394 ** Recover the wal-index by reading the write-ahead log file.
46638 /* Open file handle on the write-ahead log file. */
48894 #define BTS_NO_WAL 0x0010 /* Do not open write-ahead-log files */
70496 ** to PagerCloseWal() checkpoints and deletes the write-ahead-log
82060 ** the SQLITE_MASTER table. Note in particular that we must go ahead
90569 ** returns FALSE so that the caller will know to go ahead and generate
96164 VdbeComment((v, "Jump ahead if LIMIT reached"));
100626 ** need to occur right after the database cursor. So go ahead and
109339 ** look-ahead token iLookAhead.
109341 ** If the look-ahead token is YYNOCODE, then check to see if the action is
109342 ** independent of the look-ahead. If it is, return the action, otherwise
109347 YYCODETYPE iLookAhead /* The look-ahead token */
109404 ** look-ahead token iLookAhead.
109406 ** If the look-ahead token is YYNOCODE, then check to see if the action is
109407 ** independent of the look-ahead. If it is, return the action, otherwise
109412 YYCODETYPE iLookAhead /* The look-ahead token */
113866 ** into the write-ahead-log by this database connection.