Home
last modified time | relevance | path

Searched refs:aCsr (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbe.c424 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) ); in expandCursorArraySize() local
425 if( aCsr==0 ) return 1; in expandCursorArraySize()
426 p->aCsr = aCsr; in expandCursorArraySize()
427 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor)); in expandCursorArraySize()
2420 sqliteVdbeCleanupCursor(&p->aCsr[i]); in sqliteVdbeExec()
2421 memset(&p->aCsr[i], 0, sizeof(Cursor)); in sqliteVdbeExec()
2422 p->aCsr[i].nullRow = 1; in sqliteVdbeExec()
2425 rc = sqliteBtreeCursor(pX, p2, wrFlag, &p->aCsr[i].pCursor); in sqliteVdbeExec()
2474 pCx = &p->aCsr[i]; in sqliteVdbeExec()
2512 pCx = &p->aCsr[i]; in sqliteVdbeExec()
[all …]
H A DvdbeInt.h245 Cursor *aCsr; /* One element of this array for each open cursor */ member
H A Dvdbeaux.c747 sqliteVdbeCleanupCursor(&p->aCsr[i]); in closeAllCursors()
749 sqliteFree(p->aCsr); in closeAllCursors()
750 p->aCsr = 0; in closeAllCursors()