Home | History | Annotate | Download | only in dist

Lines Matching refs:noSync

48603   u8 noSync;                  /* Do not sync the journal if true */
48851 /* Check that MEMDB implies noSync. And an in-memory journal. Since
48861 assert( p->noSync );
49375 if( rc==SQLITE_OK && !pPager->noSync ){
49456 assert( isOpen(pPager->fd) || pPager->noSync );
49457 if( pPager->noSync || (pPager->journalMode==PAGER_JOURNALMODE_MEMORY)
50373 isSynced = pPager->noSync || (*pOffset <= pPager->journalHdr);
51579 pPager->noSync = 1;
51583 pPager->noSync = level==PAGER_SYNCHRONOUS_OFF ?1:0;
51587 if( pPager->noSync ){
51598 if( (pgFlags & PAGER_CKPT_FULLFSYNC) && !pPager->noSync ){
51985 if( !pPager->noSync ){
52164 ** If the Pager.noSync flag is set, then this function is a no-op.
52206 if( !pPager->noSync ){
52295 /* Unless the pager is in noSync mode, the journal file was just
52531 /* The doNotSpill NOSYNC bit is set during times when doing a sync of
52900 pPager->noSync = pPager->tempFile;
52901 if( pPager->noSync ){
53990 /* Set the doNotSpill NOSYNC bit to 1. This is because we cannot allow
54235 ** or pages with the Pager.noSync flag set.
54248 if( rc==SQLITE_OK && !pPager->noSync ){
54303 ** If the final parameter - noSync - is true, then the database file itself
54311 int noSync /* True to omit the xSync on the db file */
54369 && !pPager->noSync
54493 if( !noSync ){