Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.h4751 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 …]
Dsqlite3.c5304 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 …]
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.h7225 typedef struct sqlite3_module sqlite3_module; typedef
7243 struct sqlite3_module { struct
7244 int iVersion;
7245 int (*xCreate)(sqlite3*, void *pAux,
7248 int (*xConnect)(sqlite3*, void *pAux,
7251 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7252 int (*xDisconnect)(sqlite3_vtab *pVTab);
7253 int (*xDestroy)(sqlite3_vtab *pVTab);
7254 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7255 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
Dsqlite3.c7538 typedef struct sqlite3_module sqlite3_module; typedef
7556 struct sqlite3_module { struct
7557 int iVersion;
7558 int (*xCreate)(sqlite3*, void *pAux,
7561 int (*xConnect)(sqlite3*, void *pAux,
7564 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7565 int (*xDisconnect)(sqlite3_vtab *pVTab);
7566 int (*xDestroy)(sqlite3_vtab *pVTab);
7567 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7568 int (*xClose)(sqlite3_vtab_cursor*);
[all …]