Home
last modified time | relevance | path

Searched refs:pCx (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dvdbe.c267 VdbeCursor *pCx = 0; in allocateCursor() local
301 pCx->aOffset = &pCx->aType[nField]; in allocateCursor()
307 return pCx; in allocateCursor()
4268 pCx->nullRow = 1; in sqlite3VdbeExec()
4275 pCx->noReuse = 1; in sqlite3VdbeExec()
4278 pCx->pKeyInfo, pCx->uc.pCursor); in sqlite3VdbeExec()
4322 VdbeCursor *pCx; in sqlite3VdbeExec() local
4343 if( pCx && !pCx->noReuse && ALWAYS(pOp->p2<=pCx->nField) ){ in sqlite3VdbeExec()
4350 rc = sqlite3BtreeClearTable(pCx->ub.pBtx, pCx->pgnoRoot, 0); in sqlite3VdbeExec()
4407 VdbeCursor *pCx; in sqlite3VdbeExec() local
[all …]
H A Dvdbeaux.c2605 void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){ in sqlite3VdbeFreeCursor() argument
2606 if( pCx ) sqlite3VdbeFreeCursorNN(p,pCx); in sqlite3VdbeFreeCursor()
2608 void sqlite3VdbeFreeCursorNN(Vdbe *p, VdbeCursor *pCx){ in sqlite3VdbeFreeCursorNN() argument
2609 switch( pCx->eCurType ){ in sqlite3VdbeFreeCursorNN()
2611 sqlite3VdbeSorterClose(p->db, pCx); in sqlite3VdbeFreeCursorNN()
2615 assert( pCx->uc.pCursor!=0 ); in sqlite3VdbeFreeCursorNN()
2616 sqlite3BtreeCloseCursor(pCx->uc.pCursor); in sqlite3VdbeFreeCursorNN()
2621 sqlite3_vtab_cursor *pVCur = pCx->uc.pVCur; in sqlite3VdbeFreeCursorNN()
/sqlite-3.40.0/ext/wasm/
H A Ddemo-123.js163 xFunc: function(pCx, arg){ // note the call arg count argument
H A Dtester1.js1355 db.createFunction("foo",(pCx,a,b)=>a+b);
1362 xFunc: (pCx,...args)=>{ argument
1369 xFunc: (pCx,arg)=>arg