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

/osnet-11/usr/src/lib/libsqlite/src/
H A DvdbeInt.h61 ** If the Cursor.isTriggerRow flag is set it means that this cursor is
63 ** a row trigger. The data for the row is stored in Cursor.pData and
64 ** the rowid is in Cursor.iKey.
66 struct Cursor { struct
84 typedef struct Cursor Cursor; typedef in typeref:struct:Cursor
248 Cursor *aCsr; /* One element of this array for each open cursor */
297 void sqliteVdbeCleanupCursor(Cursor*);
302 int sqliteVdbeCursorMoveto(Cursor*);
H A Dbtree.h57 int (*Cursor)(Btree*, int iTable, int wrFlag, BtCursor **ppCur); member in struct:BtOps
123 (btOps(pBt)->Cursor(pBt, iTable, wrFlag, ppCur))
H A Dvdbe.c426 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) );
429 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor));
2423 memset(&p->aCsr[i], 0, sizeof(Cursor));
2473 Cursor *pCx;
2511 Cursor *pCx;
2559 Cursor *pC;
2652 Cursor *pC;
2810 Cursor *pC;
2933 Cursor *p
[all...]
H A Dvdbeaux.c733 void sqliteVdbeCleanupCursor(Cursor *pCx){
741 memset(pCx, 0, sizeof(Cursor));
1050 int sqliteVdbeCursorMoveto(Cursor *p){

Completed in 33 milliseconds