Home | History | Annotate | Download | only in dist

Lines Matching refs:grp

38629 ** PGroup which is the pcache1.grp global variable and its mutex is
38701 PGroup grp; /* The global PGroup for mode (2) */
38780 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) );
39118 pcache1.grp.mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_LRU);
39121 pcache1.grp.mxPinned = 10;
39175 pGroup = &pcache1.grp;
39571 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) );
39575 pcache1EnterMutex(&pcache1.grp);
39576 while( (nReq<0 || nFree<nReq) && ((p=pcache1.grp.pLruTail)!=0) ){
39586 pcache1LeaveMutex(&pcache1.grp);
39605 for(p=pcache1.grp.pLruHead; p; p=p->pLruNext){
39609 *pnCurrent = pcache1.grp.nCurrentPage;
39610 *pnMax = (int)pcache1.grp.nMaxPage;
39611 *pnMin = (int)pcache1.grp.nMinPage;