Home
last modified time | relevance | path

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

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