| /src/external/public-domain/sqlite/dist/ |
| sqlite3.h | 7665 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor 7695 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 7696 int (*xClose)(sqlite3_vtab_cursor*); 7697 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, 7699 int (*xNext)(sqlite3_vtab_cursor*); 7700 int (*xEof)(sqlite3_vtab_cursor*); 7701 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); 7702 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); 8019 ** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor 8034 struct sqlite3_vtab_cursor { struct [all...] |
| sqlite3.c | 7986 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor 8016 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 8017 int (*xClose)(sqlite3_vtab_cursor*); 8018 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, 8020 int (*xNext)(sqlite3_vtab_cursor*); 8021 int (*xEof)(sqlite3_vtab_cursor*); 8022 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); 8023 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); 8340 ** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor 8355 struct sqlite3_vtab_cursor { struct [all...] |