Searched refs:pPg (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 54288 PgHdr *pPg; 54294 pPg = (PgHdr*)pLower->pExtra; 54295 printf("%3d: nRef %2lld flgs %02x data ", i, pPg->nRef, pPg->flags); 54298 printf(" ptr %p\n", pPg); 54329 static int pageOnDirtyList(PCache *pCache, PgHdr *pPg){ 54332 if( p==pPg ) return 1; 54336 static int pageNotOnDirtyList(PCache *pCache, PgHdr *pPg){ 54339 if( p==pPg ) return 0; 54358 SQLITE_PRIVATE int sqlite3PcachePageSanity(PgHdr *pPg){ 54360 assert( pPg!=0 ); [all …]
|
H A D | shell.c | 2749 sqlite3_pcache_page *pPg, in pcachetraceUnpin() argument 2754 p, pPg, bDiscard); in pcachetraceUnpin() 2756 pcacheBase.xUnpin(p, pPg, bDiscard); in pcachetraceUnpin() 2760 sqlite3_pcache_page *pPg, in pcachetraceRekey() argument 2766 p, pPg, oldKey, newKey); in pcachetraceRekey() 2768 pcacheBase.xRekey(p, pPg, oldKey, newKey); in pcachetraceRekey()
|