Home
last modified time | relevance | path

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

/third_party/sqlite/include/
Dsqlite3.h7066 typedef struct sqlite3_module sqlite3_module; typedef
7084 struct sqlite3_module { struct
7085 int iVersion;
7086 int (*xCreate)(sqlite3*, void *pAux,
7089 int (*xConnect)(sqlite3*, void *pAux,
7092 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7093 int (*xDisconnect)(sqlite3_vtab *pVTab);
7094 int (*xDestroy)(sqlite3_vtab *pVTab);
7095 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7096 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
/third_party/sqlite/src/
Dsqlite3.c7375 typedef struct sqlite3_module sqlite3_module; typedef
7393 struct sqlite3_module { struct
7394 int iVersion;
7395 int (*xCreate)(sqlite3*, void *pAux,
7398 int (*xConnect)(sqlite3*, void *pAux,
7401 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7402 int (*xDisconnect)(sqlite3_vtab *pVTab);
7403 int (*xDestroy)(sqlite3_vtab *pVTab);
7404 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7405 int (*xClose)(sqlite3_vtab_cursor*);
[all …]