Lines Matching refs:pList
3772 pKeylist = p->pList;
3779 pKeylist->pNext = p->pList;
3780 p->pList = pKeylist;
3799 while( p->pList ){
3800 pTop = p->pList;
3801 p->pList = pTop->pNext;
3805 p->pList = pRev;
3818 pKeylist = p->pList;
3827 p->pList = pKeylist->pNext;
3841 if( p->pList ){
3842 sqliteVdbeKeylistFree(p->pList);
3843 p->pList = 0;
3859 p->keylistStack[p->keylistStackDepth - 1] = p->pList;
3860 p->pList = 0;
3872 sqliteVdbeKeylistFree(p->pList);
3873 p->pList = p->keylistStack[p->keylistStackDepth];