Home
last modified time | relevance | path

Searched defs:sqlite3_module (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.h7668 typedef struct sqlite3_module sqlite3_module; typedef
7686 struct sqlite3_module { struct
7687 int iVersion;
7688 int (*xCreate)(sqlite3*, void *pAux,
7691 int (*xConnect)(sqlite3*, void *pAux,
7694 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7695 int (*xDisconnect)(sqlite3_vtab *pVTab);
7696 int (*xDestroy)(sqlite3_vtab *pVTab);
7697 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7698 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
H A Dsqlite3.c7989 typedef struct sqlite3_module sqlite3_module; typedef
8007 struct sqlite3_module { struct
8008 int iVersion;
8009 int (*xCreate)(sqlite3*, void *pAux,
8012 int (*xConnect)(sqlite3*, void *pAux,
8015 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
8016 int (*xDisconnect)(sqlite3_vtab *pVTab);
8017 int (*xDestroy)(sqlite3_vtab *pVTab);
8018 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
8019 int (*xClose)(sqlite3_vtab_cursor*);
[all …]