Lines Matching refs:grp
217 PGroup grp; /* The global PGroup for mode (2) */ member
346 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); in pcache1Alloc()
448 assert( pCache->pGroup==&pcache1.grp ); in pcache1AllocPage()
728 pcache1.grp.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU); in pcache1Init()
740 pcache1.grp.mxPinned = 10; in pcache1Init()
779 pGroup = &pcache1.grp; in pcache1Create()
1238 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); in sqlite3PcacheReleaseMemory()
1242 pcache1EnterMutex(&pcache1.grp); in sqlite3PcacheReleaseMemory()
1244 && (p=pcache1.grp.lru.pLruPrev)!=0 in sqlite3PcacheReleaseMemory()
1252 pcache1LeaveMutex(&pcache1.grp); in sqlite3PcacheReleaseMemory()
1271 for(p=pcache1.grp.lru.pLruNext; p && !p->isAnchor; p=p->pLruNext){ in sqlite3PcacheStats()
1275 *pnCurrent = pcache1.grp.nPurgeable; in sqlite3PcacheStats()
1276 *pnMax = (int)pcache1.grp.nMaxPage; in sqlite3PcacheStats()
1277 *pnMin = (int)pcache1.grp.nMinPage; in sqlite3PcacheStats()