Home | History | Annotate | Download | only in WebCoreSQLite3

Lines Matching refs:sqlite3_vtab_cursor

4049 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;
4075 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4076 int (*xClose)(sqlite3_vtab_cursor*);
4077 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4079 int (*xNext)(sqlite3_vtab_cursor*);
4080 int (*xEof)(sqlite3_vtab_cursor*);
4081 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4082 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4246 ** KEYWORDS: sqlite3_vtab_cursor
4261 struct sqlite3_vtab_cursor {