Home
last modified time | relevance | path

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

/third_party/sqlite/include/
Dsqlite3.h6959 typedef struct sqlite3_module sqlite3_module; typedef
6977 struct sqlite3_module { struct
6978 int iVersion;
6979 int (*xCreate)(sqlite3*, void *pAux,
6982 int (*xConnect)(sqlite3*, void *pAux,
6985 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
6986 int (*xDisconnect)(sqlite3_vtab *pVTab);
6987 int (*xDestroy)(sqlite3_vtab *pVTab);
6988 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6989 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
/third_party/sqlite/src/
Dsqlite3.c7272 typedef struct sqlite3_module sqlite3_module; typedef
7290 struct sqlite3_module { struct
7291 int iVersion;
7292 int (*xCreate)(sqlite3*, void *pAux,
7295 int (*xConnect)(sqlite3*, void *pAux,
7298 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7299 int (*xDisconnect)(sqlite3_vtab *pVTab);
7300 int (*xDestroy)(sqlite3_vtab *pVTab);
7301 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7302 int (*xClose)(sqlite3_vtab_cursor*);
[all …]