Searched defs:sqlite3_module (Results 1 – 2 of 2) sorted by relevance
/minix3/external/public-domain/sqlite/dist/ |
H A D | sqlite3.h | 5251 typedef struct sqlite3_module sqlite3_module; typedef 5269 struct sqlite3_module { struct 5270 int iVersion; 5271 int (*xCreate)(sqlite3*, void *pAux, 5274 int (*xConnect)(sqlite3*, void *pAux, 5277 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 5278 int (*xDisconnect)(sqlite3_vtab *pVTab); 5279 int (*xDestroy)(sqlite3_vtab *pVTab); 5280 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 5281 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|
H A D | sqlite3.c | 5279 typedef struct sqlite3_module sqlite3_module; typedef 5297 struct sqlite3_module { struct 5298 int iVersion; 5299 int (*xCreate)(sqlite3*, void *pAux, 5302 int (*xConnect)(sqlite3*, void *pAux, 5305 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 5306 int (*xDisconnect)(sqlite3_vtab *pVTab); 5307 int (*xDestroy)(sqlite3_vtab *pVTab); 5308 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 5309 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|