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