Home | History | Annotate | Download | only in orig

Lines Matching refs:BTS_OVERWRITE

59854 #define BTS_OVERWRITE        0x0008   /* Overwrite deleted content with zeros */
62824 pBt->btsFlags |= BTS_OVERWRITE;
63272 ** Change the values for the BTS_SECURE_DELETE and BTS_OVERWRITE flags:
63274 ** newFlag==0 Both BTS_SECURE_DELETE and BTS_OVERWRITE are cleared
63275 ** newFlag==1 BTS_SECURE_DELETE set and BTS_OVERWRITE is cleared
63276 ** newFlag==2 BTS_SECURE_DELETE cleared and BTS_OVERWRITE is set
63281 ** With BTS_OVERWRITE set, deleted content is overwritten by zeros, but
63285 ** With BTS_SECURE_DELETE, operation is like BTS_OVERWRITE with the addition
63293 assert( BTS_OVERWRITE==BTS_SECURE_DELETE*2 );
63294 assert( BTS_FAST_SECURE==(BTS_OVERWRITE|BTS_SECURE_DELETE) );