BtCursor         7666 third_party/sqlite/amalgamation/sqlite3.c typedef struct BtCursor BtCursor;
BtCursor         7769 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCursor                    /* Space to write cursor structure */
BtCursor         7772 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor*);
BtCursor         7774 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor*);
BtCursor         7776 third_party/sqlite/amalgamation/sqlite3.c   BtCursor*,
BtCursor         7782 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor*, int*);
BtCursor         7783 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor*);
BtCursor         7784 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeInsert(BtCursor*, const void *pKey, i64 nKey,
BtCursor         7787 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes);
BtCursor         7788 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes);
BtCursor         7789 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int *pRes);
BtCursor         7790 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor*);
BtCursor         7791 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int *pRes);
BtCursor         7792 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
BtCursor         7793 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor*, u32 offset, u32 amt, void*);
BtCursor         7794 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const void *sqlite3BtreeKeyFetch(BtCursor*, int *pAmt);
BtCursor         7795 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const void *sqlite3BtreeDataFetch(BtCursor*, int *pAmt);
BtCursor         7796 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
BtCursor         7797 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeData(BtCursor*, u32 offset, u32 amt, void*);
BtCursor         7798 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeSetCachedRowid(BtCursor*, sqlite3_int64);
BtCursor         7799 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE sqlite3_int64 sqlite3BtreeGetCachedRowid(BtCursor*);
BtCursor         7804 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor*, u32 offset, u32 amt, void*);
BtCursor         7805 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeCacheOverflow(BtCursor *);
BtCursor         7806 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *);
BtCursor         7811 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor*);
BtCursor         7815 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCount(BtCursor *, i64 *);
BtCursor         7819 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCursorInfo(BtCursor*, int*, int);
BtCursor         7843 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE   void sqlite3BtreeEnterCursor(BtCursor*);
BtCursor         7844 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE   void sqlite3BtreeLeaveCursor(BtCursor*);
BtCursor         12258 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCursor;    /* The cursor structure of the backend */
BtCursor         12563 third_party/sqlite/amalgamation/sqlite3.c int sqlite2BtreeKeyCompare(BtCursor *, const void *, int, int, int *);
BtCursor         12565 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3*, BtCursor *, i64 *);
BtCursor         12594 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeMemFromBtree(BtCursor*,int,int,int,Mem*);
BtCursor         46608 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCursor;    /* A list of all open cursors */
BtCursor         46689 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pNext, *pPrev;  /* Forms a linked list of all cursors */
BtCursor         46994 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeEnterCursor(BtCursor *pCur){
BtCursor         46997 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeLeaveCursor(BtCursor *pCur){
BtCursor         47322 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *p;
BtCursor         47546 third_party/sqlite/amalgamation/sqlite3.c static int cursorHoldsMutex(BtCursor *p){
BtCursor         47556 third_party/sqlite/amalgamation/sqlite3.c static void invalidateOverflowCache(BtCursor *pCur){
BtCursor         47567 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *p;
BtCursor         47592 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *p;
BtCursor         47687 third_party/sqlite/amalgamation/sqlite3.c static int saveCursorPosition(BtCursor *pCur){
BtCursor         47737 third_party/sqlite/amalgamation/sqlite3.c static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){
BtCursor         47738 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *p;
BtCursor         47756 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *pCur){
BtCursor         47769 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur,     /* Cursor open on the btree to be searched */
BtCursor         47801 third_party/sqlite/amalgamation/sqlite3.c static int btreeRestoreCursorPosition(BtCursor *pCur){
BtCursor         47831 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor *pCur, int *pHasMoved){
BtCursor         49132 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur;
BtCursor         49139 third_party/sqlite/amalgamation/sqlite3.c     BtCursor *pTmp = pCur;
BtCursor         50349 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur;
BtCursor         50376 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *p;
BtCursor         50559 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur                         /* Space for new cursor */
BtCursor         50607 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur                              /* Write new cursor here */
BtCursor         50625 third_party/sqlite/amalgamation/sqlite3.c   return ROUND8(sizeof(BtCursor));
BtCursor         50636 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor *p){
BtCursor         50637 third_party/sqlite/amalgamation/sqlite3.c   memset(p, 0, offsetof(BtCursor, iPage));
BtCursor         50652 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid){
BtCursor         50653 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *p;
BtCursor         50666 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE sqlite3_int64 sqlite3BtreeGetCachedRowid(BtCursor *pCur){
BtCursor         50674 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor *pCur){
BtCursor         50716 third_party/sqlite/amalgamation/sqlite3.c   static void assertCellInfo(BtCursor *pCur){
BtCursor         50728 third_party/sqlite/amalgamation/sqlite3.c   static void getCellInfo(BtCursor *pCur){
BtCursor         50755 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor *pCur){
BtCursor         50772 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize){
BtCursor         50796 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize){
BtCursor         50941 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur,      /* Cursor pointing to entry to read from */
BtCursor         51084 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){
BtCursor         51101 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeData(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){
BtCursor         51141 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur,      /* Cursor pointing to entry to read from */
BtCursor         51192 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const void *sqlite3BtreeKeyFetch(BtCursor *pCur, int *pAmt){
BtCursor         51201 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE const void *sqlite3BtreeDataFetch(BtCursor *pCur, int *pAmt){
BtCursor         51221 third_party/sqlite/amalgamation/sqlite3.c static int moveToChild(BtCursor *pCur, u32 newPgno){
BtCursor         51275 third_party/sqlite/amalgamation/sqlite3.c static void moveToParent(BtCursor *pCur){
BtCursor         51312 third_party/sqlite/amalgamation/sqlite3.c static int moveToRoot(BtCursor *pCur){
BtCursor         51388 third_party/sqlite/amalgamation/sqlite3.c static int moveToLeftmost(BtCursor *pCur){
BtCursor         51413 third_party/sqlite/amalgamation/sqlite3.c static int moveToRightmost(BtCursor *pCur){
BtCursor         51437 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){
BtCursor         51460 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){
BtCursor         51525 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur,          /* The cursor to be moved */
BtCursor         51708 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor *pCur){
BtCursor         51722 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int *pRes){
BtCursor         51791 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){
BtCursor         53624 third_party/sqlite/amalgamation/sqlite3.c static int balance(BtCursor *pCur){
BtCursor         53760 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur,                /* Insert data into the table of this cursor */
BtCursor         53901 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor *pCur){
BtCursor         54450 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeCount(BtCursor *pCur, i64 *pnEntry){
BtCursor         55177 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z){
BtCursor         55220 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3BtreeCacheOverflow(BtCursor *pCur){
BtCursor         56866 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur,   /* Cursor pointing at record to retrieve. */
BtCursor         60144 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3 *db, BtCursor *pCur, i64 *rowid){
BtCursor         60231 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCur = pC->pCursor;
BtCursor         62052 third_party/sqlite/amalgamation/sqlite3.c       pCx->pCursor = (BtCursor*)
BtCursor         62554 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;   /* The BTree cursor */
BtCursor         62594 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62665 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62673 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62702 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62717 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62722 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62727 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62732 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62738 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         62743 third_party/sqlite/amalgamation/sqlite3.c       BtCursor *pCrsr;
BtCursor         64425 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;   /* The BTree cursor */
BtCursor         64875 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         65921 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         65997 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         66418 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         66559 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         66614 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         66667 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         66715 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         66751 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         66790 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCrsr;
BtCursor         68458 third_party/sqlite/amalgamation/sqlite3.c   BtCursor *pCsr;         /* Cursor pointing at blob row */
BtCursor         68787 third_party/sqlite/amalgamation/sqlite3.c   int (*xCall)(BtCursor*, u32, u32, void*)
BtCursor          164 third_party/sqlite/src/src/btmutex.c void sqlite3BtreeEnterCursor(BtCursor *pCur){
BtCursor          167 third_party/sqlite/src/src/btmutex.c void sqlite3BtreeLeaveCursor(BtCursor *pCur){
BtCursor          203 third_party/sqlite/src/src/btree.c   BtCursor *p;
BtCursor          427 third_party/sqlite/src/src/btree.c static int cursorHoldsMutex(BtCursor *p){
BtCursor          437 third_party/sqlite/src/src/btree.c static void invalidateOverflowCache(BtCursor *pCur){
BtCursor          448 third_party/sqlite/src/src/btree.c   BtCursor *p;
BtCursor          473 third_party/sqlite/src/src/btree.c   BtCursor *p;
BtCursor          568 third_party/sqlite/src/src/btree.c static int saveCursorPosition(BtCursor *pCur){
BtCursor          618 third_party/sqlite/src/src/btree.c static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){
BtCursor          619 third_party/sqlite/src/src/btree.c   BtCursor *p;
BtCursor          637 third_party/sqlite/src/src/btree.c void sqlite3BtreeClearCursor(BtCursor *pCur){
BtCursor          650 third_party/sqlite/src/src/btree.c   BtCursor *pCur,     /* Cursor open on the btree to be searched */
BtCursor          682 third_party/sqlite/src/src/btree.c static int btreeRestoreCursorPosition(BtCursor *pCur){
BtCursor          712 third_party/sqlite/src/src/btree.c int sqlite3BtreeCursorHasMoved(BtCursor *pCur, int *pHasMoved){
BtCursor         2013 third_party/sqlite/src/src/btree.c   BtCursor *pCur;
BtCursor         2020 third_party/sqlite/src/src/btree.c     BtCursor *pTmp = pCur;
BtCursor         3230 third_party/sqlite/src/src/btree.c   BtCursor *pCur;
BtCursor         3257 third_party/sqlite/src/src/btree.c   BtCursor *p;
BtCursor         3440 third_party/sqlite/src/src/btree.c   BtCursor *pCur                         /* Space for new cursor */
BtCursor         3488 third_party/sqlite/src/src/btree.c   BtCursor *pCur                              /* Write new cursor here */
BtCursor         3506 third_party/sqlite/src/src/btree.c   return ROUND8(sizeof(BtCursor));
BtCursor         3517 third_party/sqlite/src/src/btree.c void sqlite3BtreeCursorZero(BtCursor *p){
BtCursor         3518 third_party/sqlite/src/src/btree.c   memset(p, 0, offsetof(BtCursor, iPage));
BtCursor         3533 third_party/sqlite/src/src/btree.c void sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid){
BtCursor         3534 third_party/sqlite/src/src/btree.c   BtCursor *p;
BtCursor         3547 third_party/sqlite/src/src/btree.c sqlite3_int64 sqlite3BtreeGetCachedRowid(BtCursor *pCur){
BtCursor         3555 third_party/sqlite/src/src/btree.c int sqlite3BtreeCloseCursor(BtCursor *pCur){
BtCursor         3597 third_party/sqlite/src/src/btree.c   static void assertCellInfo(BtCursor *pCur){
BtCursor         3609 third_party/sqlite/src/src/btree.c   static void getCellInfo(BtCursor *pCur){
BtCursor         3636 third_party/sqlite/src/src/btree.c int sqlite3BtreeCursorIsValid(BtCursor *pCur){
BtCursor         3653 third_party/sqlite/src/src/btree.c int sqlite3BtreeKeySize(BtCursor *pCur, i64 *pSize){
BtCursor         3677 third_party/sqlite/src/src/btree.c int sqlite3BtreeDataSize(BtCursor *pCur, u32 *pSize){
BtCursor         3822 third_party/sqlite/src/src/btree.c   BtCursor *pCur,      /* Cursor pointing to entry to read from */
BtCursor         3965 third_party/sqlite/src/src/btree.c int sqlite3BtreeKey(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){
BtCursor         3982 third_party/sqlite/src/src/btree.c int sqlite3BtreeData(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){
BtCursor         4022 third_party/sqlite/src/src/btree.c   BtCursor *pCur,      /* Cursor pointing to entry to read from */
BtCursor         4073 third_party/sqlite/src/src/btree.c const void *sqlite3BtreeKeyFetch(BtCursor *pCur, int *pAmt){
BtCursor         4082 third_party/sqlite/src/src/btree.c const void *sqlite3BtreeDataFetch(BtCursor *pCur, int *pAmt){
BtCursor         4102 third_party/sqlite/src/src/btree.c static int moveToChild(BtCursor *pCur, u32 newPgno){
BtCursor         4156 third_party/sqlite/src/src/btree.c static void moveToParent(BtCursor *pCur){
BtCursor         4193 third_party/sqlite/src/src/btree.c static int moveToRoot(BtCursor *pCur){
BtCursor         4269 third_party/sqlite/src/src/btree.c static int moveToLeftmost(BtCursor *pCur){
BtCursor         4294 third_party/sqlite/src/src/btree.c static int moveToRightmost(BtCursor *pCur){
BtCursor         4318 third_party/sqlite/src/src/btree.c int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){
BtCursor         4341 third_party/sqlite/src/src/btree.c int sqlite3BtreeLast(BtCursor *pCur, int *pRes){
BtCursor         4406 third_party/sqlite/src/src/btree.c   BtCursor *pCur,          /* The cursor to be moved */
BtCursor         4589 third_party/sqlite/src/src/btree.c int sqlite3BtreeEof(BtCursor *pCur){
BtCursor         4603 third_party/sqlite/src/src/btree.c int sqlite3BtreeNext(BtCursor *pCur, int *pRes){
BtCursor         4672 third_party/sqlite/src/src/btree.c int sqlite3BtreePrevious(BtCursor *pCur, int *pRes){
BtCursor         6505 third_party/sqlite/src/src/btree.c static int balance(BtCursor *pCur){
BtCursor         6641 third_party/sqlite/src/src/btree.c   BtCursor *pCur,                /* Insert data into the table of this cursor */
BtCursor         6782 third_party/sqlite/src/src/btree.c int sqlite3BtreeDelete(BtCursor *pCur){
BtCursor         7331 third_party/sqlite/src/src/btree.c int sqlite3BtreeCount(BtCursor *pCur, i64 *pnEntry){
BtCursor         8058 third_party/sqlite/src/src/btree.c int sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z){
BtCursor         8101 third_party/sqlite/src/src/btree.c void sqlite3BtreeCacheOverflow(BtCursor *pCur){
BtCursor           40 third_party/sqlite/src/src/btree.h typedef struct BtCursor BtCursor;
BtCursor          143 third_party/sqlite/src/src/btree.h   BtCursor *pCursor                    /* Space to write cursor structure */
BtCursor          146 third_party/sqlite/src/src/btree.h void sqlite3BtreeCursorZero(BtCursor*);
BtCursor          148 third_party/sqlite/src/src/btree.h int sqlite3BtreeCloseCursor(BtCursor*);
BtCursor          150 third_party/sqlite/src/src/btree.h   BtCursor*,
BtCursor          156 third_party/sqlite/src/src/btree.h int sqlite3BtreeCursorHasMoved(BtCursor*, int*);
BtCursor          157 third_party/sqlite/src/src/btree.h int sqlite3BtreeDelete(BtCursor*);
BtCursor          158 third_party/sqlite/src/src/btree.h int sqlite3BtreeInsert(BtCursor*, const void *pKey, i64 nKey,
BtCursor          161 third_party/sqlite/src/src/btree.h int sqlite3BtreeFirst(BtCursor*, int *pRes);
BtCursor          162 third_party/sqlite/src/src/btree.h int sqlite3BtreeLast(BtCursor*, int *pRes);
BtCursor          163 third_party/sqlite/src/src/btree.h int sqlite3BtreeNext(BtCursor*, int *pRes);
BtCursor          164 third_party/sqlite/src/src/btree.h int sqlite3BtreeEof(BtCursor*);
BtCursor          165 third_party/sqlite/src/src/btree.h int sqlite3BtreePrevious(BtCursor*, int *pRes);
BtCursor          166 third_party/sqlite/src/src/btree.h int sqlite3BtreeKeySize(BtCursor*, i64 *pSize);
BtCursor          167 third_party/sqlite/src/src/btree.h int sqlite3BtreeKey(BtCursor*, u32 offset, u32 amt, void*);
BtCursor          168 third_party/sqlite/src/src/btree.h const void *sqlite3BtreeKeyFetch(BtCursor*, int *pAmt);
BtCursor          169 third_party/sqlite/src/src/btree.h const void *sqlite3BtreeDataFetch(BtCursor*, int *pAmt);
BtCursor          170 third_party/sqlite/src/src/btree.h int sqlite3BtreeDataSize(BtCursor*, u32 *pSize);
BtCursor          171 third_party/sqlite/src/src/btree.h int sqlite3BtreeData(BtCursor*, u32 offset, u32 amt, void*);
BtCursor          172 third_party/sqlite/src/src/btree.h void sqlite3BtreeSetCachedRowid(BtCursor*, sqlite3_int64);
BtCursor          173 third_party/sqlite/src/src/btree.h sqlite3_int64 sqlite3BtreeGetCachedRowid(BtCursor*);
BtCursor          178 third_party/sqlite/src/src/btree.h int sqlite3BtreePutData(BtCursor*, u32 offset, u32 amt, void*);
BtCursor          179 third_party/sqlite/src/src/btree.h void sqlite3BtreeCacheOverflow(BtCursor *);
BtCursor          180 third_party/sqlite/src/src/btree.h void sqlite3BtreeClearCursor(BtCursor *);
BtCursor          185 third_party/sqlite/src/src/btree.h int sqlite3BtreeCursorIsValid(BtCursor*);
BtCursor          189 third_party/sqlite/src/src/btree.h int sqlite3BtreeCount(BtCursor *, i64 *);
BtCursor          193 third_party/sqlite/src/src/btree.h int sqlite3BtreeCursorInfo(BtCursor*, int*, int);
BtCursor          217 third_party/sqlite/src/src/btree.h   void sqlite3BtreeEnterCursor(BtCursor*);
BtCursor          218 third_party/sqlite/src/src/btree.h   void sqlite3BtreeLeaveCursor(BtCursor*);
BtCursor          406 third_party/sqlite/src/src/btreeInt.h   BtCursor *pCursor;    /* A list of all open cursors */
BtCursor          487 third_party/sqlite/src/src/btreeInt.h   BtCursor *pNext, *pPrev;  /* Forms a linked list of all cursors */
BtCursor          220 third_party/sqlite/src/src/test3.c   BtCursor *pCur;
BtCursor          233 third_party/sqlite/src/src/test3.c   pCur = (BtCursor *)ckalloc(sqlite3BtreeCursorSize());
BtCursor          264 third_party/sqlite/src/src/test3.c   BtCursor *pCur;
BtCursor          299 third_party/sqlite/src/src/test3.c   BtCursor *pCur;
BtCursor          334 third_party/sqlite/src/src/test3.c   BtCursor *pCur;
BtCursor          369 third_party/sqlite/src/src/test3.c   BtCursor *pCur;
BtCursor          398 third_party/sqlite/src/src/test3.c   BtCursor *pCur;
BtCursor           50 third_party/sqlite/src/src/test_btree.c   BtCursor *pCur;
BtCursor          236 third_party/sqlite/src/src/vdbe.c       pCx->pCursor = (BtCursor*)
BtCursor         2088 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;   /* The BTree cursor */
BtCursor         2532 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         3552 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         3626 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         4039 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         4174 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         4227 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         4278 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         4324 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         4358 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor         4395 third_party/sqlite/src/src/vdbe.c   BtCursor *pCrsr;
BtCursor           44 third_party/sqlite/src/src/vdbeInt.h   BtCursor *pCursor;    /* The cursor structure of the backend */
BtCursor          349 third_party/sqlite/src/src/vdbeInt.h int sqlite2BtreeKeyCompare(BtCursor *, const void *, int, int, int *);
BtCursor          351 third_party/sqlite/src/src/vdbeInt.h int sqlite3VdbeIdxRowid(sqlite3*, BtCursor *, i64 *);
BtCursor          380 third_party/sqlite/src/src/vdbeInt.h int sqlite3VdbeMemFromBtree(BtCursor*,int,int,int,Mem*);
BtCursor         3019 third_party/sqlite/src/src/vdbeaux.c int sqlite3VdbeIdxRowid(sqlite3 *db, BtCursor *pCur, i64 *rowid){
BtCursor         3106 third_party/sqlite/src/src/vdbeaux.c   BtCursor *pCur = pC->pCursor;
BtCursor           30 third_party/sqlite/src/src/vdbeblob.c   BtCursor *pCsr;         /* Cursor pointing at blob row */
BtCursor          359 third_party/sqlite/src/src/vdbeblob.c   int (*xCall)(BtCursor*, u32, u32, void*)
BtCursor          901 third_party/sqlite/src/src/vdbemem.c   BtCursor *pCur,   /* Cursor pointing at record to retrieve. */