Searched refs:pCursor (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A Dvdbe.c2427 rc = sqliteBtreeCursor(pX, p2, wrFlag, &p->aCsr[i].pCursor);
2490 rc = sqliteBtreeCursor(pCx->pBt, pgno, 1, &pCx->pCursor);
2493 rc = sqliteBtreeCursor(pCx->pBt, 2, 1, &pCx->pCursor);
2564 if( pC->pCursor!=0 ){
2576 sqliteBtreeMoveto(pC->pCursor, (char*)&iKey, sizeof(int), &res);
2581 sqliteBtreeMoveto(pC->pCursor, pTos->z, pTos->n, &res);
2588 sqliteBtreeNext(pC->pCursor, &res);
2595 sqliteBtreePrevious(pC->pCursor, &res);
2602 res = sqliteBtreeKeySize(pC->pCursor,&keysize)!=0 || keysize==0;
2655 if( (pC = &p->aCsr[i])->pCursor!
[all...]
H A DvdbeInt.h67 BtCursor *pCursor; /* The cursor structure of the backend */ member in struct:Cursor
H A Dvdbeaux.c734 if( pCx->pCursor ){
735 sqliteBtreeCloseCursor(pCx->pCursor);
1054 sqliteBtreeMoveto(p->pCursor, (char*)&p->movetoTarget, sizeof(int), &res);
1058 sqliteBtreeNext(p->pCursor, &res);
H A Dbtree.c356 BtCursor *pCursor; /* A list of all open cursors */ member in struct:Btree
727 pBt->pCursor = 0;
739 while( pBt->pCursor ){
740 fileBtreeCloseCursor(pBt->pCursor);
827 if( pBt->inTrans==0 && pBt->pCursor==0 && pBt->page1!=0 ){
936 for(pCur=pBt->pCursor; pCur; pCur=pCur->pNext){
995 for(pCur=pBt->pCursor; pCur; pCur=pCur->pNext){
1076 pCur->pNext = pBt->pCursor;
1081 pRing = pBt->pCursor;
1089 pBt->pCursor
[all...]

Completed in 36 milliseconds