Home
last modified time | relevance | path

Searched refs:sqliteBtreeNext (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/test/
H A Dbtree4rb.test15 # This file focuses on testing the sqliteBtreeNext() and
H A Dbtree4.test15 # This file focuses on testing the sqliteBtreeNext() and
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.h128 #define sqliteBtreeNext(pCur, pRes) (btCOps(pCur)->Next(pCur, pRes)) macro
H A Dtest3.c684 rc = sqliteBtreeNext(pCur, &res); in btree_next()
H A Dvdbe.c2586 sqliteBtreeNext(pC->pCursor, &res); in sqliteVdbeExec()
2725 rc = sqliteBtreeNext(pCrsr, &res); in sqliteVdbeExec()
3415 rc = pOp->opcode==OP_Next ? sqliteBtreeNext(pCrsr, &res) : in sqliteVdbeExec()
3469 sqliteBtreeNext(pCrsr, &res); in sqliteVdbeExec()
H A Dvdbeaux.c1055 sqliteBtreeNext(p->pCursor, &res); in sqliteVdbeCursorMoveto()