Home
last modified time | relevance | path

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

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.c17085 PgHdr *pDirty; /* Transient list of dirty sorted by pgno */ member
53901 PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */
53972 for(p=pCache->pDirty; p; p=p->pDirtyNext){
53979 for(p=pCache->pDirty; p; p=p->pDirtyNext){
54012 assert( pPg->pDirtyPrev!=0 || pCache->pDirty==pPg );
54062 assert( pPage->pDirtyPrev || pPage==p->pDirty );
54082 assert( pPage==p->pDirty );
54083 p->pDirty = pPage->pDirtyNext;
54085 if( p->pDirty==0 ){ /*OPTIMIZATION-IF-TRUE*/
54093 pPage->pDirtyNext = p->pDirty;
[all …]