Home | History | Annotate | Download | only in dist

Lines Matching refs:xNext

5513   int (*xNext)(sqlite3_vtab_cursor*);
5577 ** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in
5701 ** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods
67943 ** are queried from within xNext() and other v-table methods using
70885 assert( u.co.pModule->xNext );
70887 /* Invoke the xNext() method of the module. There is no way for the
70889 ** xNext(). Instead, if an error occurs, true is returned (indicating that
70894 rc = u.co.pModule->xNext(u.co.pCur->pVtabCursor);
116313 ** to xNext() or xClose().
116319 int (*xNext)(
120133 /* xNext */ fts3NextMethod,
121450 ** This function is called as the second part of each xNext operation when
122092 ** xNext - Advance the cursor to the next row, if any.
122309 fts3auxNextMethod, /* xNext */
122523 rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition);
122636 rc = pModule->xNext(pCursor, &zByte, &nByte, &iBegin, &iEnd, &iPos);
124674 while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){
125145 ** win (reduced IO and CPU) if SQLite stops calling the virtual table xNext()
125806 int (*xNext)(sqlite3_tokenizer_cursor *pCursor,
125824 xNext = pModule->xNext;
125826 && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos))
128370 rc = pModule->xNext(pTC, &zToken, &nToken, &iDum1, &iDum2, &iPos);
129233 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &DUMMY2, &DUMMY3, &iCurrent);
129300 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &iBegin, &iFin, &iCurrent);
129985 const char *ZDUMMY; /* Dummy argument used with xNext() */
129986 int NDUMMY; /* Dummy argument used with xNext() */
130055 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
130080 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
131241 ** Rtree virtual table module xNext method.
131249 ** already at EOF. It is against the rules to call the xNext() method of
133025 rtreeNext, /* xNext - advance a cursor */
134192 icuNext, /* xNext */