doNotSpill       42277 ext/sqlite3/libsqlite/sqlite3.c   u8 doNotSpill;              /* Do not spill the cache when non-zero */
doNotSpill       43947 ext/sqlite3/libsqlite/sqlite3.c     assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)==0 );
doNotSpill       43948 ext/sqlite3/libsqlite/sqlite3.c     pPager->doNotSpill |= SPILLFLAG_ROLLBACK;
doNotSpill       43950 ext/sqlite3/libsqlite/sqlite3.c     assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)!=0 );
doNotSpill       43951 ext/sqlite3/libsqlite/sqlite3.c     pPager->doNotSpill &= ~SPILLFLAG_ROLLBACK;
doNotSpill       45118 ext/sqlite3/libsqlite/sqlite3.c     pPager->doNotSpill &= ~SPILLFLAG_OFF;
doNotSpill       45120 ext/sqlite3/libsqlite/sqlite3.c     pPager->doNotSpill |= SPILLFLAG_OFF;
doNotSpill       46043 ext/sqlite3/libsqlite/sqlite3.c   testcase( pPager->doNotSpill & SPILLFLAG_ROLLBACK );
doNotSpill       46044 ext/sqlite3/libsqlite/sqlite3.c   testcase( pPager->doNotSpill & SPILLFLAG_OFF );
doNotSpill       46045 ext/sqlite3/libsqlite/sqlite3.c   testcase( pPager->doNotSpill & SPILLFLAG_NOSYNC );
doNotSpill       46046 ext/sqlite3/libsqlite/sqlite3.c   if( pPager->doNotSpill
doNotSpill       46047 ext/sqlite3/libsqlite/sqlite3.c    && ((pPager->doNotSpill & (SPILLFLAG_ROLLBACK|SPILLFLAG_OFF))!=0
doNotSpill       47441 ext/sqlite3/libsqlite/sqlite3.c   assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)==0 );
doNotSpill       47442 ext/sqlite3/libsqlite/sqlite3.c   pPager->doNotSpill |= SPILLFLAG_NOSYNC;
doNotSpill       47501 ext/sqlite3/libsqlite/sqlite3.c   assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)!=0 );
doNotSpill       47502 ext/sqlite3/libsqlite/sqlite3.c   pPager->doNotSpill &= ~SPILLFLAG_NOSYNC;