Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A Dvdbe.c426 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) ); in expandCursorArraySize() local
427 if( aCsr==0 ) return 1; in expandCursorArraySize()
428 p->aCsr = aCsr; in expandCursorArraySize()
429 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor)); in expandCursorArraySize()
2422 sqliteVdbeCleanupCursor(&p->aCsr[i]); in sqliteVdbeExec()
2423 memset(&p->aCsr[i], 0, sizeof(Cursor)); in sqliteVdbeExec()
2424 p->aCsr[i].nullRow = 1; in sqliteVdbeExec()
2427 rc = sqliteBtreeCursor(pX, p2, wrFlag, &p->aCsr[i].pCursor); in sqliteVdbeExec()
2476 pCx = &p->aCsr[i]; in sqliteVdbeExec()
2514 pCx = &p->aCsr[i]; in sqliteVdbeExec()
[all …]
H A DvdbeInt.h248 Cursor *aCsr; /* One element of this array for each open cursor */ member
H A Dvdbeaux.c750 sqliteVdbeCleanupCursor(&p->aCsr[i]); in closeAllCursors()
752 sqliteFree(p->aCsr); in closeAllCursors()
753 p->aCsr = 0; in closeAllCursors()