Home | History | Annotate | Download | only in orig

Lines Matching refs:xSync

1099 ** When SQLite invokes the xSync() method of an
1113 ** xSync VFS method occur and applies uniformly across all platforms.
1158 ** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or
1239 int (*xSync)(sqlite3_file*, int flags);
1296 ** SQLite and sent to all VFSes in place of a call to the xSync method
5519 int (*xSync)(sqlite3_vtab *pVTab);
14751 return id->pMethods->xSync(id, flags);
24231 os2Sync, /* xSync */
29365 unixSync, /* xSync */ \
34992 winSync, /* xSync */
38460 ** Otherwise, the page is not synced until the xSync method of the VFS
41777 ** the xSync primitive is called and is relevant to all platforms.
42278 ** if( <full-sync mode> ) xSync(<journal file>);
42281 ** if( NOT SEQUENTIAL ) xSync(<journal file>);
44175 int noSync /* True to omit the xSync on the db file */
44321 ** xSync() call will be changed to a no-op by the OS anyhow.
45423 ** On a checkpoint, the WAL is first VFS.xSync-ed, then valid content of the
45424 ** WAL is transferred into the database, then the database is VFS.xSync-ed.
45425 ** The VFS.xSync operations serve as write barriers - all writes launched
45426 ** before the xSync must complete before any write that launches after the
45427 ** xSync begins.
61264 /* Before doing anything else, call the xSync() callback for any
61267 ** required, as an xSync() callback may add an attached database
70619 ** within a callback to a virtual table xSync() method. If it is, the error
72705 jrnlSync, /* xSync */
72989 memjrnlSync, /* xSync */
102240 ** Invoke the xSync method of all virtual tables in the sqlite3.aVTrans
102242 ** SQLITE_OK if all xSync operations are successful.
102256 if( pVtab && (x = pVtab->pModule->xSync)!=0 ){
102287 ** (xBegin/xRollback/xCommit and optionally xSync) and a transaction is
102299 ** virtual module xSync() callback. It is illegal to write to
119736 ** Implementation of xSync() method. Flush the contents of the pending-terms
120103 /* xSync */ fts3SyncMethod,
122269 0, /* xSync */
132985 0, /* xSync - sync transaction */