Lines Matching defs:eCreate
52659 u8 eCreate; /* eCreate value for for xFetch() */
52815 /* If there are now no dirty pages in the cache, set eCreate to 2.
52821 assert( p->bPurgeable || p->eCreate==2 );
52823 assert( p->bPurgeable==0 || p->eCreate==1 );
52824 p->eCreate = 2;
52837 assert( p->eCreate==2 );
52838 p->eCreate = 1;
52942 p->eCreate = 2;
53004 int eCreate;
53010 assert( pCache->eCreate==((pCache->bPurgeable && pCache->pDirty) ? 1 : 2) );
53012 /* eCreate defines what to do if the page does not exist.
53019 eCreate = createFlag & pCache->eCreate;
53020 assert( eCreate==0 || eCreate==1 || eCreate==2 );
53021 assert( createFlag==0 || pCache->eCreate==eCreate );
53022 assert( createFlag==0 || eCreate==1+(!pCache->bPurgeable||!pCache->pDirty) );
53023 pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate);
53047 if( pCache->eCreate==2 ) return 0;