Lines Matching refs:pcache2

20668   sqlite3_pcache_methods2 pcache2;  /* Low-level page-cache interface */  member
55262 pLower = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, i, 0);
55265 sqlite3GlobalConfig.pcache2.xUnpin(pCache->pCache, pLower, 0);
55437 sqlite3GlobalConfig.pcache2.xUnpin(p->pCache->pCache, p->pPage, 0);
55469 if( sqlite3GlobalConfig.pcache2.xInit==0 ){
55474 assert( sqlite3GlobalConfig.pcache2.xInit!=0 );
55476 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg);
55479 if( sqlite3GlobalConfig.pcache2.xShutdown ){
55481 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg);
55532 pNew = sqlite3GlobalConfig.pcache2.xCreate(
55537 sqlite3GlobalConfig.pcache2.xCachesize(pNew, numberOfCachePages(pCache));
55539 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache);
55596 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate);
55646 sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache),
55657 *ppPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2);
55755 sqlite3GlobalConfig.pcache2.xUnpin(p->pCache->pCache, p->pPage, 1);
55840 pOther = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, newPgno, 0);
55848 sqlite3GlobalConfig.pcache2.xRekey(pCache->pCache, p->pPage, p->pgno,newPgno);
55884 pPage1 = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache,1,0);
55891 sqlite3GlobalConfig.pcache2.xTruncate(pCache->pCache, pgno+1);
55901 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache);
56017 return sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache);
56035 sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache,
56063 sqlite3GlobalConfig.pcache2.xShrink(pCache->pCache);
183202 sqlite3GlobalConfig.pcache2 = *va_arg(ap, sqlite3_pcache_methods2*);
183210 if( sqlite3GlobalConfig.pcache2.xInit==0 ){
183213 *va_arg(ap, sqlite3_pcache_methods2*) = sqlite3GlobalConfig.pcache2;