Home | History | Annotate | Download | only in amalgamation

Lines Matching refs:grp

34960 ** PGroup which is the pcache1.grp global variable and its mutex is
35030 PGroup grp; /* The global PGroup for mode (2) */
35124 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) );
35436 pcache1.grp.mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_LRU);
35439 pcache1.grp.mxPinned = 10;
35495 pGroup = &pcache1_g.grp;
35845 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) );
35849 pcache1EnterMutex(&pcache1.grp);
35850 while( (nReq<0 || nFree<nReq) && ((p=pcache1.grp.pLruTail)!=0) ){
35856 pcache1LeaveMutex(&pcache1.grp);
35875 for(p=pcache1.grp.pLruHead; p; p=p->pLruNext){
35878 *pnCurrent = pcache1.grp.nCurrentPage;
35879 *pnMax = pcache1.grp.nMaxPage;
35880 *pnMin = pcache1.grp.nMinPage;