Home
last modified time | relevance | path

Searched refs:sqliteBtreeMoveto (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.h121 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ macro
H A Dvdbe.c2574 sqliteBtreeMoveto(pC->pCursor, (char*)&iKey, sizeof(int), &res); in sqliteVdbeExec()
2579 sqliteBtreeMoveto(pC->pCursor, pTos->z, pTos->n, &res); in sqliteVdbeExec()
2656 rx = sqliteBtreeMoveto(pC->pCursor, pTos->z, pTos->n, &res); in sqliteVdbeExec()
2722 rc = sqliteBtreeMoveto(pCrsr, zKey, nKey-4, &res); in sqliteVdbeExec()
2784 rx = sqliteBtreeMoveto(pCrsr, (char*)&iKey, sizeof(int), &res); in sqliteVdbeExec()
2884 rx = sqliteBtreeMoveto(pC->pCursor, &x, sizeof(int), &res); in sqliteVdbeExec()
3453 rc = sqliteBtreeMoveto(pCrsr, zKey, nKey-4, &res); in sqliteVdbeExec()
3497 rx = sqliteBtreeMoveto(pCrsr, pTos->z, pTos->n, &res); in sqliteVdbeExec()
H A Dtest3.c590 rc = sqliteBtreeMoveto(pCur, argv[2], strlen(argv[2]), &res); in btree_move_to()
H A Dvdbeaux.c1051 sqliteBtreeMoveto(p->pCursor, (char*)&p->movetoTarget, sizeof(int), &res); in sqliteVdbeCursorMoveto()