Searched refs:pCx (Results 1 – 2 of 2) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | vdbeaux.c | 730 void sqliteVdbeCleanupCursor(Cursor *pCx){ in sqliteVdbeCleanupCursor() argument 731 if( pCx->pCursor ){ in sqliteVdbeCleanupCursor() 732 sqliteBtreeCloseCursor(pCx->pCursor); in sqliteVdbeCleanupCursor() 734 if( pCx->pBt ){ in sqliteVdbeCleanupCursor() 735 sqliteBtreeClose(pCx->pBt); in sqliteVdbeCleanupCursor() 737 sqliteFree(pCx->pData); in sqliteVdbeCleanupCursor() 738 memset(pCx, 0, sizeof(Cursor)); in sqliteVdbeCleanupCursor()
|
H A D | vdbe.c | 2471 Cursor *pCx; in sqliteVdbeExec() local 2474 pCx = &p->aCsr[i]; in sqliteVdbeExec() 2475 sqliteVdbeCleanupCursor(pCx); in sqliteVdbeExec() 2476 memset(pCx, 0, sizeof(*pCx)); in sqliteVdbeExec() 2477 pCx->nullRow = 1; in sqliteVdbeExec() 2478 rc = sqliteBtreeFactory(db, 0, 1, TEMP_PAGES, &pCx->pBt); in sqliteVdbeExec() 2481 rc = sqliteBtreeBeginTrans(pCx->pBt); in sqliteVdbeExec() 2486 rc = sqliteBtreeCreateIndex(pCx->pBt, &pgno); in sqliteVdbeExec() 2488 rc = sqliteBtreeCursor(pCx->pBt, pgno, 1, &pCx->pCursor); in sqliteVdbeExec() 2491 rc = sqliteBtreeCursor(pCx->pBt, 2, 1, &pCx->pCursor); in sqliteVdbeExec() [all …]
|