Lines Matching refs:skipNext
59915 ** skipNext meaning:
59916 ** eState==SKIPNEXT && skipNext>0: Next sqlite3BtreeNext() is no-op.
59917 ** eState==SKIPNEXT && skipNext<0: Next sqlite3BtreePrevious() is no-op.
59918 ** eState==FAULT: Cursor fault with skipNext as error code.
59934 int skipNext; /* Prev() is noop if negative. Next() is noop if positive.
59970 ** Cursor is valid except that the Cursor.skipNext field is non-zero
59986 ** should return the error code stored in BtCursor.skipNext
61118 pCur->skipNext = 0;
61248 int skipNext;
61252 return pCur->skipNext;
61255 rc = btreeMoveto(pCur, pCur->pKey, pCur->nKey, 0, &skipNext);
61260 pCur->skipNext |= skipNext;
61261 if( pCur->skipNext && pCur->eState==CURSOR_VALID ){
61326 assert( pCur->skipNext==0 );
64476 p->skipNext = errCode;
65454 assert( pCur->skipNext!=SQLITE_OK );
65455 return pCur->skipNext;
65687 if( pCur->info.nKey+1==intKey && !pCur->skipNext ){
65961 assert( pCur->skipNext==0 || pCur->eState!=CURSOR_VALID );
65971 if( pCur->skipNext ){
65974 if( pCur->skipNext>0 ){
65975 pCur->skipNext = 0;
65978 pCur->skipNext = 0;
66024 assert( pCur->skipNext==0 || pCur->eState!=CURSOR_VALID );
66065 assert( pCur->skipNext==0 || pCur->eState!=CURSOR_VALID );
66076 if( pCur->skipNext ){
66079 if( pCur->skipNext<0 ){
66080 pCur->skipNext = 0;
66083 pCur->skipNext = 0;
66118 assert( pCur->skipNext==0 || pCur->eState!=CURSOR_VALID );
68607 assert( pCur->skipNext!=SQLITE_OK );
68608 return pCur->skipNext;
68815 int bSkipnext = 0; /* Leaf cursor in SKIPNEXT state */
68953 pCur->skipNext = -1;
68956 pCur->skipNext = 1;