Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:sqlite3_vtab_cursor

4566 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;
4596 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4597 int (*xClose)(sqlite3_vtab_cursor*);
4598 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4600 int (*xNext)(sqlite3_vtab_cursor*);
4601 int (*xEof)(sqlite3_vtab_cursor*);
4602 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4603 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4790 ** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor}
4805 struct sqlite3_vtab_cursor {