HomeSort by relevance Sort by last modified time
    Searched defs:pDirty (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
pcache.h 28 PgHdr *pDirty; /* Transient list of dirty pages */
pcache.c 20 PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */
71 assert( pPage->pDirtyPrev || pPage==p->pDirty );
91 assert( pPage==p->pDirty );
92 p->pDirty = pPage->pDirtyNext;
101 ** Add page pPage to the head of the dirty list (PCache1.pDirty is set to
107 assert( pPage->pDirtyNext==0 && pPage->pDirtyPrev==0 && p->pDirty!=pPage );
109 pPage->pDirtyNext = p->pDirty;
114 p->pDirty = pPage;
192 assert( pCache->nRef==0 && pCache->pDirty==0 );
232 eCreate = createFlag * (1 + (!pCache->bPurgeable || !pCache->pDirty));
    [all...]