Searched refs:aCsr (Results 1 – 3 of 3) sorted by relevance
426 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) ); in expandCursorArraySize() local427 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 …]
248 Cursor *aCsr; /* One element of this array for each open cursor */ member
750 sqliteVdbeCleanupCursor(&p->aCsr[i]); in closeAllCursors()752 sqliteFree(p->aCsr); in closeAllCursors()753 p->aCsr = 0; in closeAllCursors()