Home | History | Annotate | Download | only in orig

Lines Matching defs: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
67915 ** are queried from within xNext() and other v-table methods using
70857 assert( u.co.pModule->xNext );
70859 /* Invoke the xNext() method of the module. There is no way for the
70861 ** xNext(). Instead, if an error occurs, true is returned (indicating that
70866 rc = u.co.pModule->xNext(u.co.pCur->pVtabCursor);
116277 ** to xNext() or xClose().
116283 int (*xNext)(
120097 /* xNext */ fts3NextMethod,
121404 ** This function is called as the second part of each xNext operation when
122046 ** xNext - Advance the cursor to the next row, if any.
122263 fts3auxNextMethod, /* xNext */
122477 rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition);
122590 rc = pModule->xNext(pCursor, &zByte, &nByte, &iBegin, &iEnd, &iPos);
124628 while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){
125099 ** win (reduced IO and CPU) if SQLite stops calling the virtual table xNext()
125760 int (*xNext)(sqlite3_tokenizer_cursor *pCursor,
125778 xNext = pModule->xNext;
125780 && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos))
128324 rc = pModule->xNext(pTC, &zToken, &nToken, &iDum1, &iDum2, &iPos);
129187 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &DUMMY2, &DUMMY3, &iCurrent);
129254 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &iBegin, &iFin, &iCurrent);
129939 const char *ZDUMMY; /* Dummy argument used with xNext() */
129940 int NDUMMY; /* Dummy argument used with xNext() */
130009 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
130034 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
131195 ** Rtree virtual table module xNext method.
131203 ** already at EOF. It is against the rules to call the xNext() method of
132979 rtreeNext, /* xNext - advance a cursor */
134146 icuNext, /* xNext */