Searched defs:sqlite3_module (Results 1 – 4 of 4) sorted by relevance
| /NextBSD/crypto/heimdal/lib/sqlite/ |
| HD | sqlite3.h | 4751 typedef struct sqlite3_module sqlite3_module; typedef 4769 struct sqlite3_module { struct 4770 int iVersion; 4771 int (*xCreate)(sqlite3*, void *pAux, 4774 int (*xConnect)(sqlite3*, void *pAux, 4777 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 4778 int (*xDisconnect)(sqlite3_vtab *pVTab); 4779 int (*xDestroy)(sqlite3_vtab *pVTab); 4780 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 4781 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|
| HD | sqlite3.c | 5304 typedef struct sqlite3_module sqlite3_module; typedef 5322 struct sqlite3_module { struct 5323 int iVersion; 5324 int (*xCreate)(sqlite3*, void *pAux, 5327 int (*xConnect)(sqlite3*, void *pAux, 5330 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 5331 int (*xDisconnect)(sqlite3_vtab *pVTab); 5332 int (*xDestroy)(sqlite3_vtab *pVTab); 5333 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 5334 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|
| /NextBSD/contrib/sqlite3/ |
| HD | sqlite3.h | 5492 typedef struct sqlite3_module sqlite3_module; typedef 5510 struct sqlite3_module { struct 5511 int iVersion; 5512 int (*xCreate)(sqlite3*, void *pAux, 5515 int (*xConnect)(sqlite3*, void *pAux, 5518 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 5519 int (*xDisconnect)(sqlite3_vtab *pVTab); 5520 int (*xDestroy)(sqlite3_vtab *pVTab); 5521 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 5522 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|
| HD | sqlite3.c | 5706 typedef struct sqlite3_module sqlite3_module; typedef 5724 struct sqlite3_module { struct 5725 int iVersion; 5726 int (*xCreate)(sqlite3*, void *pAux, 5729 int (*xConnect)(sqlite3*, void *pAux, 5732 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 5733 int (*xDisconnect)(sqlite3_vtab *pVTab); 5734 int (*xDestroy)(sqlite3_vtab *pVTab); 5735 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 5736 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|