Searched refs:pCx (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c733 void sqliteVdbeCleanupCursor(Cursor *pCx){ argument
734 if( pCx->pCursor ){
735 sqliteBtreeCloseCursor(pCx->pCursor);
737 if( pCx->pBt ){
738 sqliteBtreeClose(pCx->pBt);
740 sqliteFree(pCx->pData);
741 memset(pCx, 0, sizeof(Cursor));
H A Dvdbe.c2473 Cursor *pCx; local
2476 pCx = &p->aCsr[i];
2477 sqliteVdbeCleanupCursor(pCx);
2478 memset(pCx, 0, sizeof(*pCx));
2479 pCx->nullRow = 1;
2480 rc = sqliteBtreeFactory(db, 0, 1, TEMP_PAGES, &pCx->pBt);
2483 rc = sqliteBtreeBeginTrans(pCx->pBt);
2488 rc = sqliteBtreeCreateIndex(pCx->pBt, &pgno);
2490 rc = sqliteBtreeCursor(pCx
2511 Cursor *pCx; local
[all...]

Completed in 86 milliseconds