Lines Matching defs:newFlag
71696 ** newFlag==0 Both BTS_SECURE_DELETE and BTS_OVERWRITE are cleared
71697 ** newFlag==1 BTS_SECURE_DELETE set and BTS_OVERWRITE is cleared
71698 ** newFlag==2 BTS_SECURE_DELETE cleared and BTS_OVERWRITE is set
71699 ** newFlag==(-1) No changes
71701 ** This routine acts as a query if newFlag is less than zero
71711 SQLITE_PRIVATE int sqlite3BtreeSecureDelete(Btree *p, int newFlag){
71717 if( newFlag>=0 ){
71719 p->pBt->btsFlags |= BTS_SECURE_DELETE*newFlag;