Lines Matching refs:xNext

5750   int (*xNext)(sqlite3_vtab_cursor*);
5814 ** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in
5938 ** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods
68449 ** are queried from within xNext() and other v-table methods using
71383 assert( u.cp.pModule->xNext );
71385 /* Invoke the xNext() method of the module. There is no way for the
71387 ** xNext(). Instead, if an error occurs, true is returned (indicating that
71392 rc = u.cp.pModule->xNext(u.cp.pCur->pVtabCursor);
118905 ** to xNext() or xClose().
118911 int (*xNext)(
122812 /* xNext */ fts3NextMethod,
124181 ** This function is called as the second part of each xNext operation when
124899 ** xNext - Advance the cursor to the next row, if any.
125116 fts3auxNextMethod, /* xNext */
125330 rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition);
125443 rc = pModule->xNext(pCursor, &zByte, &nByte, &iBegin, &iEnd, &iPos);
127749 while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){
128483 ** xNext - Advance the cursor to the next row, if any.
128491 rc = pTab->pMod->xNext(pCsr->pCsr,
128608 fts3tokNextMethod, /* xNext */
128676 ** win (reduced IO and CPU) if SQLite stops calling the virtual table xNext()
129424 int (*xNext)(sqlite3_tokenizer_cursor *pCursor,
129442 xNext = pModule->xNext;
129444 && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos))
133583 rc = pModule->xNext(pT, &zToken, &nToken, &iDum1, &iDum2, &iPos);
133752 rc = pModule->xNext(pTC, &zToken, &nToken, &iDum1, &iDum2, &iPos);
134623 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &DUMMY2, &DUMMY3, &iCurrent);
134691 ** in the FTS code the variable that the third argument to xNext points to
134693 ** subsequent*) call to xNext(). This is done for a particular application
134701 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &iBegin, &iFin, &iCurrent);
135422 const char *ZDUMMY; /* Dummy argument used with xNext() */
135423 int NDUMMY = 0; /* Dummy argument used with xNext() */
135460 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
135485 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
137427 ** Rtree virtual table module xNext method.
137435 ** already at EOF. It is against the rules to call the xNext() method of
139251 rtreeNext, /* xNext - advance a cursor */
140441 icuNext, /* xNext */