Searched defs:sqlite3_module (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/ |
H A 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 …]
|
H A 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 …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
H A D | sqlite3.d | 1359 struct sqlite3_module struct 1361 int iVersion; 1472 const(sqlite3_module)*pModule; /** The module for this virtual table */ member
|