Home
last modified time | relevance | path

Searched refs:pPg (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.c55239 PgHdr *pPg; local
55245 pPg = (PgHdr*)pLower->pExtra;
55246 printf("%3d: nRef %2lld flgs %02x data ", i, pPg->nRef, pPg->flags);
55249 printf(" ptr %p\n", pPg);
55280 static int pageOnDirtyList(PCache *pCache, PgHdr *pPg){
55283 if( p==pPg ) return 1;
55287 static int pageNotOnDirtyList(PCache *pCache, PgHdr *pPg){
55290 if( p==pPg ) return 0;
55309 SQLITE_PRIVATE int sqlite3PcachePageSanity(PgHdr *pPg){
55311 assert( pPg!=0 );
[all …]
H A Dshell.c2247 sqlite3_pcache_page *pPg, in pcachetraceUnpin() argument
2252 p, pPg, bDiscard); in pcachetraceUnpin()
2254 pcacheBase.xUnpin(p, pPg, bDiscard); in pcachetraceUnpin()
2258 sqlite3_pcache_page *pPg, in pcachetraceRekey() argument
2264 p, pPg, oldKey, newKey); in pcachetraceRekey()
2266 pcacheBase.xRekey(p, pPg, oldKey, newKey); in pcachetraceRekey()