Searched defs:eSkip (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree_rb.c106 u8 eSkip; /* Determines if next step operation is a no-op */ member in struct:RbtCursor
111 ** Legal values for RbtCursor.eSkip.
715 * Note that RbtCursor.eSkip and RbtCursor.pNode both initialize to 0.
903 pCur->eSkip = SKIP_NONE;
914 ** the pCur->eSkip flag is set to SKIP_NEXT which forces the next call to
918 ** pCur->eSkip is set to SKIP_PREV is the cursor is left pointing to
965 pCur->eSkip = SKIP_NONE;
979 pCur->eSkip = SKIP_NEXT;
982 pCur->eSkip = SKIP_NONE;
984 pCur->eSkip
[all...]
H A Dbtree.c379 u8 eSkip; /* Determines if next step operation is a no-op */ member in struct:BtCursor
384 ** Legal values for BtCursor.eSkip.
1075 pCur->eSkip = SKIP_INVALID;
1544 pCur->eSkip = SKIP_NONE;
1564 pCur->eSkip = SKIP_NONE;
1595 pCur->eSkip = SKIP_NONE;
1654 assert( pCur->eSkip!=SKIP_INVALID );
1660 if( pCur->eSkip==SKIP_NEXT ){
1661 pCur->eSkip = SKIP_NONE;
1665 pCur->eSkip
[all...]

Completed in 51 milliseconds