Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h7502 typedef struct sqlite3_module sqlite3_module; typedef
7520 struct sqlite3_module { struct
7521 int iVersion;
7522 int (*xCreate)(sqlite3*, void *pAux,
7525 int (*xConnect)(sqlite3*, void *pAux,
7528 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7529 int (*xDisconnect)(sqlite3_vtab *pVTab);
7530 int (*xDestroy)(sqlite3_vtab *pVTab);
7531 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7532 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
H A Dsqlite3.c7821 typedef struct sqlite3_module sqlite3_module; typedef
7839 struct sqlite3_module { struct
7840 int iVersion;
7841 int (*xCreate)(sqlite3*, void *pAux,
7844 int (*xConnect)(sqlite3*, void *pAux,
7847 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7848 int (*xDisconnect)(sqlite3_vtab *pVTab);
7849 int (*xDestroy)(sqlite3_vtab *pVTab);
7850 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7851 int (*xClose)(sqlite3_vtab_cursor*);
[all …]