Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libsqlite/src/
H A Dbtree.h124 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ macro
H A Dvdbe.c2576 sqliteBtreeMoveto(pC->pCursor, (char*)&iKey, sizeof(int), &res); in sqliteVdbeExec()
2581 sqliteBtreeMoveto(pC->pCursor, pTos->z, pTos->n, &res); in sqliteVdbeExec()
2658 rx = sqliteBtreeMoveto(pC->pCursor, pTos->z, pTos->n, &res); in sqliteVdbeExec()
2724 rc = sqliteBtreeMoveto(pCrsr, zKey, nKey-4, &res); in sqliteVdbeExec()
2786 rx = sqliteBtreeMoveto(pCrsr, (char*)&iKey, sizeof(int), &res); in sqliteVdbeExec()
2886 rx = sqliteBtreeMoveto(pC->pCursor, &x, sizeof(int), &res); in sqliteVdbeExec()
3455 rc = sqliteBtreeMoveto(pCrsr, zKey, nKey-4, &res); in sqliteVdbeExec()
3499 rx = sqliteBtreeMoveto(pCrsr, pTos->z, pTos->n, &res); in sqliteVdbeExec()
H A Dtest3.c593 rc = sqliteBtreeMoveto(pCur, argv[2], strlen(argv[2]), &res); in btree_move_to()
H A Dvdbeaux.c1054 sqliteBtreeMoveto(p->pCursor, (char*)&p->movetoTarget, sizeof(int), &res); in sqliteVdbeCursorMoveto()