Searched defs:sqlite3_module (Results 1 – 2 of 2) sorted by relevance
| /netbsd/src/external/public-domain/sqlite/dist/ |
| D | sqlite3.h | 7270 typedef struct sqlite3_module sqlite3_module; typedef 7288 struct sqlite3_module { struct 7289 int iVersion; 7290 int (*xCreate)(sqlite3*, void *pAux, 7293 int (*xConnect)(sqlite3*, void *pAux, 7296 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 7297 int (*xDisconnect)(sqlite3_vtab *pVTab); 7298 int (*xDestroy)(sqlite3_vtab *pVTab); 7299 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 7300 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|
| D | sqlite3.c | 7583 typedef struct sqlite3_module sqlite3_module; typedef 7601 struct sqlite3_module { struct 7602 int iVersion; 7603 int (*xCreate)(sqlite3*, void *pAux, 7606 int (*xConnect)(sqlite3*, void *pAux, 7609 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 7610 int (*xDisconnect)(sqlite3_vtab *pVTab); 7611 int (*xDestroy)(sqlite3_vtab *pVTab); 7612 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 7613 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|