Home | History | Annotate | Download | only in dist

Lines Matching refs:doNotSync

31660 ** doNotSync
31706 u8 doNotSync; /* Boolean. While true, do not spill the cache */
34427 /* The doNotSync flag is set by the sqlite3PagerWrite() function while it
34432 ** is trying to make clean will require a journal sync and the doNotSync
34441 || (pPager->doNotSync && pPg->flags&PGHDR_NEED_SYNC)
35742 /* Set the doNotSync flag to 1. This is because we cannot allow a journal
35746 assert( pPager->doNotSync==0 );
35747 pPager->doNotSync = 1;
35808 assert( pPager->doNotSync==1 );
35809 pPager->doNotSync = 0;