Home | History | Annotate | Download | only in dist

Lines Matching refs:eCreate

37971   u8 eCreate;                         /* eCreate value for for xFetch() */
38039 assert( p->eCreate==1 );
38040 p->eCreate = 2;
38063 assert( p->eCreate==2 );
38064 p->eCreate = 1;
38134 p->eCreate = 2;
38176 int eCreate;
38201 /* eCreate defines what to do if the page does not exist.
38208 eCreate = createFlag==0 ? 0 : pCache->eCreate;
38209 assert( (createFlag*(1+(!pCache->bPurgeable||!pCache->pDirty)))==eCreate );
38210 pPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate);
38211 if( !pPage && eCreate==1 ){
38272 return (pPgHdr==0 && eCreate) ? SQLITE_NOMEM : SQLITE_OK;