Searched defs:aCsr (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbe.c426 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) ); local
427 if( aCsr==0 ) return 1;
428 p->aCsr = aCsr;
429 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor));
2422 sqliteVdbeCleanupCursor(&p->aCsr[i]);
2423 memset(&p->aCsr[i], 0, sizeof(Cursor));
2424 p->aCsr[i].nullRow = 1;
2427 rc = sqliteBtreeCursor(pX, p2, wrFlag, &p->aCsr[
[all...]
H A DvdbeInt.h247 int nCursor; /* Number of slots in aCsr[] */
248 Cursor *aCsr; /* One element of this array for each open cursor */ member in struct:Vdbe

Completed in 101 milliseconds