Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_vtab_cursor

6091 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;
6121 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6122 int (*xClose)(sqlite3_vtab_cursor*);
6123 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
6125 int (*xNext)(sqlite3_vtab_cursor*);
6126 int (*xEof)(sqlite3_vtab_cursor*);
6127 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
6128 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
6368 ** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor}
6383 struct sqlite3_vtab_cursor {