Lines Matching defs:autoVacuum

48877   u8 autoVacuum;        /* True if auto-vacuum is enabled */
49090 #define ISAUTOVACUUM (pBt->autoVacuum)
50168 assert( pBt->autoVacuum );
51251 ** leave the autoVacuum mode at 0 (do not auto-vacuum), even if
51257 pBt->autoVacuum = (SQLITE_DEFAULT_AUTOVACUUM ? 1 : 0);
51266 pBt->autoVacuum = (get4byte(&zDbHeader[36 + 4*4])?1:0);
51636 ** Change the 'auto-vacuum' property of the database. If the 'autoVacuum'
51641 SQLITE_PRIVATE int sqlite3BtreeSetAutoVacuum(Btree *p, int autoVacuum){
51647 u8 av = (u8)autoVacuum;
51650 if( (pBt->btsFlags & BTS_PAGESIZE_FIXED)!=0 && (av ?1:0)!=pBt->autoVacuum ){
51653 pBt->autoVacuum = av ?1:0;
51672 (!p->pBt->autoVacuum)?BTREE_AUTOVACUUM_NONE:
51800 pBt->autoVacuum = (get4byte(&page1[36 + 4*4])?1:0);
51892 assert( pBt->autoVacuum==1 || pBt->autoVacuum==0 );
51894 put4byte(&data[36 + 4*4], pBt->autoVacuum);
52400 if( !pBt->autoVacuum ){
52430 assert(pBt->autoVacuum);
52516 if( pBt->autoVacuum ){
53139 if( pBt->autoVacuum ){
54255 assert( pBt->autoVacuum );
54439 if( pBt->autoVacuum && PTRMAP_ISPAGE(pBt, pBt->nPage) ){
54772 if( pBt->autoVacuum ){
54792 if( pBt->autoVacuum && rc==SQLITE_OK ){
54998 if( pPage->pBt->autoVacuum ){
56432 if( pBt->autoVacuum ){
56695 if( pBt->autoVacuum ){
56824 assert( pBt->autoVacuum || iMeta==0 );
57032 if( pCheck->pBt->autoVacuum ){
57044 if( pCheck->pBt->autoVacuum ){
57059 if( pCheck->pBt->autoVacuum && N>0 ){
57167 if( pBt->autoVacuum ){
57179 if( pBt->autoVacuum ){
57196 if( pBt->autoVacuum ){
57365 if( pBt->autoVacuum && aRoot[i]>1 ){
57384 (PTRMAP_PAGENO(pBt, i)!=i || !pBt->autoVacuum) ){
57388 (PTRMAP_PAGENO(pBt, i)==i && pBt->autoVacuum) ){