Lines Matching refs:pVtabCursor
12037 sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */
12038 const sqlite3_module *pModule; /* Module for cursor pVtabCursor */
56797 if( pCx->pVtabCursor ){
56798 sqlite3_vtab_cursor *pVtabCursor = pCx->pVtabCursor;
56801 pModule->xClose(pVtabCursor);
60934 sqlite3_vtab_cursor *pVtabCursor;
60944 sqlite3_vtab_cursor *pVtabCursor;
62541 assert( u.am.pC->pVtabCursor==0 );
64569 }else if( u.bi.pC->pVtabCursor ){
64570 u.bi.pVtab = u.bi.pC->pVtabCursor->pVtab;
64573 rc = u.bi.pModule->xRowid(u.bi.pC->pVtabCursor, &u.bi.v);
66017 sqlite3_vtab_cursor *pVtabCursor;
66023 u.cg.pVtabCursor = 0;
66027 rc = u.cg.pModule->xOpen(u.cg.pVtab, &u.cg.pVtabCursor);
66031 u.cg.pVtabCursor->pVtab = u.cg.pVtab;
66036 u.cg.pCur->pVtabCursor = u.cg.pVtabCursor;
66037 u.cg.pCur->pModule = u.cg.pVtabCursor->pVtab->pModule;
66040 u.cg.pModule->xClose(u.cg.pVtabCursor);
66073 sqlite3_vtab_cursor *pVtabCursor;
66086 assert( u.ch.pCur->pVtabCursor );
66087 u.ch.pVtabCursor = u.ch.pCur->pVtabCursor;
66088 u.ch.pVtab = u.ch.pVtabCursor->pVtab;
66106 rc = u.ch.pModule->xFilter(u.ch.pVtabCursor, u.ch.iQuery, pOp->p4.z, u.ch.nArg, u.ch.apArg);
66110 u.ch.res = u.ch.pModule->xEof(u.ch.pVtabCursor);
66139 assert( pCur->pVtabCursor );
66147 u.ci.pVtab = pCur->pVtabCursor->pVtab;
66160 rc = u.ci.pModule->xColumn(pCur->pVtabCursor, &u.ci.sContext, pOp->p2);
66199 assert( u.cj.pCur->pVtabCursor );
66203 u.cj.pVtab = u.cj.pCur->pVtabCursor->pVtab;
66214 rc = u.cj.pModule->xNext(u.cj.pCur->pVtabCursor);
66218 u.cj.res = u.cj.pModule->xEof(u.cj.pCur->pVtabCursor);
120200 static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){
120201 Rtree *pRtree = (Rtree *)(pVtabCursor->pVtab);
120202 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;
120245 static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){
120246 Rtree *pRtree = (Rtree *)pVtabCursor->pVtab;
120247 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;
120350 sqlite3_vtab_cursor *pVtabCursor,
120354 Rtree *pRtree = (Rtree *)pVtabCursor->pVtab;
120355 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;