Home | History | Annotate | Download | only in dist

Lines Matching refs:bPurgeable

6722 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
6725 ** does not have to do anything special based with the value of bPurgeable;
6726 ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
6728 ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to
6730 ** ^Hence, a cache created with bPurgeable false will
6737 ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable
6824 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6846 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9111 int bPurgeable, /* True if pages are on backing store */
36276 int bPurgeable; /* True if pages are on backing store */
36380 if( pCache->bPurgeable ){
36423 int bPurgeable, /* True if pages are on backing store */
36431 p->bPurgeable = bPurgeable;
36485 pCache->szPage, pCache->szExtra + sizeof(PgHdr), pCache->bPurgeable
36494 eCreate = createFlag * (1 + (!pCache->bPurgeable || !pCache->pDirty));
36939 ** flag (bPurgeable) are set when the cache is created. nMax may be
36946 int bPurgeable; /* True if cache is purgeable */
37173 if( pCache->bPurgeable ){
37196 if( pCache->bPurgeable ){
37427 static sqlite3_pcache *pcache1Create(int szPage, int szExtra, int bPurgeable){
37466 pCache->bPurgeable = (bPurgeable ? 1 : 0);
37467 if( bPurgeable ){
37485 if( pCache->bPurgeable ){
37504 if( pCache->bPurgeable ){
37592 assert( pCache->bPurgeable || createFlag!=1 );
37593 assert( pCache->bPurgeable || pCache->nMin==0 );
37594 assert( pCache->bPurgeable==0 || pCache->nMin==10 );
37595 assert( pCache->nMin==0 || pCache->bPurgeable );
37639 if( pCache->bPurgeable && pGroup->pLruTail && (
37661 pGroup->nCurrentPage -= (pOther->bPurgeable - pCache->bPurgeable);
37798 assert( pCache->bPurgeable || (pCache->nMax==0 && pCache->nMin==0) );