Lines Matching refs:pBase
62624 sqlite3_pcache_page *pBase;
62632 pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3);
62633 if( pBase==0 ){
62635 rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase);
62637 if( pBase==0 ){
62642 pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase);
148821 SrcItem *pBase, /* The base SrcItem. Looking at pBase[1] and following */
148826 pBase++;
148827 if( pBase->fg.isUsing==0 ) continue;
148828 if( NEVER(pBase->u3.pUsing==0) ) continue;
148829 if( sqlite3IdListIndex(pBase->u3.pUsing, zName)>=0 ) return 1;
160702 static void transferJoinMarkings(Expr *pDerived, Expr *pBase){
160703 if( pDerived && ExprHasProperty(pBase, EP_OuterON|EP_InnerON) ){
160704 pDerived->flags |= pBase->flags & (EP_OuterON|EP_InnerON);
160705 pDerived->w.iJoin = pBase->w.iJoin;
170602 Token *pBase
170607 if( pBase ){
170608 pWin->zBase = sqlite3DbStrNDup(pParse->db, pBase->z, pBase->n);