Searched refs:sqliteBtreeMoveto (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | btree.h | 124 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ macro
|
H A D | vdbe.c | 2576 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 D | test3.c | 593 rc = sqliteBtreeMoveto(pCur, argv[2], strlen(argv[2]), &res); in btree_move_to()
|
H A D | vdbeaux.c | 1054 sqliteBtreeMoveto(p->pCursor, (char*)&p->movetoTarget, sizeof(int), &res); in sqliteVdbeCursorMoveto()
|