Home | History | Annotate | Download | only in dist

Lines Matching refs:pVtabCursor

12030   sqlite3_vtab_cursor *pVtabCursor;  /* The cursor for a virtual table */
12031 const sqlite3_module *pModule; /* Module for cursor pVtabCursor */
56790 if( pCx->pVtabCursor ){
56791 sqlite3_vtab_cursor *pVtabCursor = pCx->pVtabCursor;
56794 pModule->xClose(pVtabCursor);
60927 sqlite3_vtab_cursor *pVtabCursor;
60937 sqlite3_vtab_cursor *pVtabCursor;
62534 assert( u.am.pC->pVtabCursor==0 );
64562 }else if( u.bi.pC->pVtabCursor ){
64563 u.bi.pVtab = u.bi.pC->pVtabCursor->pVtab;
64566 rc = u.bi.pModule->xRowid(u.bi.pC->pVtabCursor, &u.bi.v);
66010 sqlite3_vtab_cursor *pVtabCursor;
66016 u.cg.pVtabCursor = 0;
66020 rc = u.cg.pModule->xOpen(u.cg.pVtab, &u.cg.pVtabCursor);
66024 u.cg.pVtabCursor->pVtab = u.cg.pVtab;
66029 u.cg.pCur->pVtabCursor = u.cg.pVtabCursor;
66030 u.cg.pCur->pModule = u.cg.pVtabCursor->pVtab->pModule;
66033 u.cg.pModule->xClose(u.cg.pVtabCursor);
66066 sqlite3_vtab_cursor *pVtabCursor;
66079 assert( u.ch.pCur->pVtabCursor );
66080 u.ch.pVtabCursor = u.ch.pCur->pVtabCursor;
66081 u.ch.pVtab = u.ch.pVtabCursor->pVtab;
66099 rc = u.ch.pModule->xFilter(u.ch.pVtabCursor, u.ch.iQuery, pOp->p4.z, u.ch.nArg, u.ch.apArg);
66103 u.ch.res = u.ch.pModule->xEof(u.ch.pVtabCursor);
66132 assert( pCur->pVtabCursor );
66140 u.ci.pVtab = pCur->pVtabCursor->pVtab;
66153 rc = u.ci.pModule->xColumn(pCur->pVtabCursor, &u.ci.sContext, pOp->p2);
66192 assert( u.cj.pCur->pVtabCursor );
66196 u.cj.pVtab = u.cj.pCur->pVtabCursor->pVtab;
66207 rc = u.cj.pModule->xNext(u.cj.pCur->pVtabCursor);
66211 u.cj.res = u.cj.pModule->xEof(u.cj.pCur->pVtabCursor);
120169 static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){
120170 Rtree *pRtree = (Rtree *)(pVtabCursor->pVtab);
120171 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;
120214 static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){
120215 Rtree *pRtree = (Rtree *)pVtabCursor->pVtab;
120216 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;
120319 sqlite3_vtab_cursor *pVtabCursor,
120323 Rtree *pRtree = (Rtree *)pVtabCursor->pVtab;
120324 RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor;