Home
last modified time | relevance | path

Searched refs:PGHDR_DIRTY (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c17107 #define PGHDR_DIRTY 0x002 /* Page is on the PCache.pDirty list */ macro
54006 assert( (pPg->flags & PGHDR_DIRTY)==0 );/* Cannot be both CLEAN and DIRTY */
54009 assert( (pPg->flags & PGHDR_DIRTY)!=0 );/* If not CLEAN must be DIRTY */
54017 assert( pPg->flags & PGHDR_DIRTY ); /* WRITEABLE implies DIRTY */
54440 if( p->flags&PGHDR_DIRTY ){
54457 p->flags ^= (PGHDR_DIRTY|PGHDR_CLEAN);
54459 assert( (p->flags & (PGHDR_DIRTY|PGHDR_CLEAN))==PGHDR_DIRTY );
54473 assert( (p->flags & PGHDR_DIRTY)!=0 );
54476 p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC|PGHDR_WRITEABLE);
54539 if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){
[all …]