Lines Matching refs:pCrsr
2794 BtCursor *pCrsr; /* The B-Tree cursor corresponding to pC */ in sqlite3VdbeExec() local
2839 pCrsr = pC->uc.pCursor; in sqlite3VdbeExec()
2850 }else if( sqlite3BtreeCursorHasMoved(pCrsr) ){ in sqlite3VdbeExec()
2856 assert( pCrsr ); in sqlite3VdbeExec()
2857 assert( sqlite3BtreeCursorIsValid(pCrsr) ); in sqlite3VdbeExec()
2858 pC->payloadSize = sqlite3BtreePayloadSize(pCrsr); in sqlite3VdbeExec()
2859 pC->aRow = sqlite3BtreePayloadFetch(pCrsr, &pC->szRow); in sqlite3VdbeExec()
3577 BtCursor *pCrsr; in sqlite3VdbeExec() local
3580 pCrsr = p->apCsr[pOp->p1]->uc.pCursor; in sqlite3VdbeExec()
3581 assert( pCrsr ); in sqlite3VdbeExec()
3583 nEntry = sqlite3BtreeRowCountEst(pCrsr); in sqlite3VdbeExec()
3586 rc = sqlite3BtreeCount(db, pCrsr, &nEntry); in sqlite3VdbeExec()
5267 BtCursor *pCrsr; in sqlite3VdbeExec() local
5303 pCrsr = pC->uc.pCursor; in sqlite3VdbeExec()
5304 assert( pCrsr!=0 ); in sqlite3VdbeExec()
5306 rc = sqlite3BtreeTableMoveto(pCrsr, iKey, 0, &res); in sqlite3VdbeExec()
5865 BtCursor *pCrsr; in sqlite3VdbeExec() local
5877 pCrsr = pC->uc.pCursor; in sqlite3VdbeExec()
5888 assert( sqlite3BtreeCursorIsValid(pCrsr) ); in sqlite3VdbeExec()
5890 n = sqlite3BtreePayloadSize(pCrsr); in sqlite3VdbeExec()
5895 rc = sqlite3VdbeMemFromBtreeZeroOffset(pCrsr, n, pOut); in sqlite3VdbeExec()
6015 BtCursor *pCrsr; in sqlite3VdbeExec() local
6022 pCrsr = pC->uc.pCursor; in sqlite3VdbeExec()
6024 assert( pCrsr!=0 ); in sqlite3VdbeExec()
6031 if( sqlite3BtreeCursorIsValidNN(pCrsr) ){ in sqlite3VdbeExec()
6035 rc = sqlite3BtreeLast(pCrsr, &res); in sqlite3VdbeExec()
6054 BtCursor *pCrsr; in sqlite3VdbeExec() local
6061 pCrsr = pC->uc.pCursor; in sqlite3VdbeExec()
6062 assert( pCrsr ); in sqlite3VdbeExec()
6063 rc = sqlite3BtreeFirst(pCrsr, &res); in sqlite3VdbeExec()
6066 sz = sqlite3BtreeRowCountEst(pCrsr); in sqlite3VdbeExec()
6120 BtCursor *pCrsr; in sqlite3VdbeExec() local
6136 pCrsr = pC->uc.pCursor; in sqlite3VdbeExec()
6137 assert( pCrsr ); in sqlite3VdbeExec()
6138 rc = sqlite3BtreeFirst(pCrsr, &res); in sqlite3VdbeExec()
6359 BtCursor *pCrsr; in sqlite3VdbeExec() local
6370 pCrsr = pC->uc.pCursor; in sqlite3VdbeExec()
6371 assert( pCrsr!=0 ); in sqlite3VdbeExec()
6376 rc = sqlite3BtreeIndexMoveto(pCrsr, &r, &res); in sqlite3VdbeExec()
6379 rc = sqlite3BtreeDelete(pCrsr, BTREE_AUXDELETE); in sqlite3VdbeExec()