Searched defs:sqlite3_module (Results 1 – 2 of 2) sorted by relevance
| /third_party/sqlite/include/ |
| D | sqlite3.h | 6832 typedef struct sqlite3_module sqlite3_module; typedef 6850 struct sqlite3_module { struct 6851 int iVersion; 6852 int (*xCreate)(sqlite3*, void *pAux, 6855 int (*xConnect)(sqlite3*, void *pAux, 6858 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 6859 int (*xDisconnect)(sqlite3_vtab *pVTab); 6860 int (*xDestroy)(sqlite3_vtab *pVTab); 6861 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 6862 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|
| /third_party/sqlite/src/ |
| D | sqlite3.c | 7927 typedef struct sqlite3_module sqlite3_module; typedef 7945 struct sqlite3_module { struct 7946 int iVersion; 7947 int (*xCreate)(sqlite3*, void *pAux, 7950 int (*xConnect)(sqlite3*, void *pAux, 7953 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 7954 int (*xDisconnect)(sqlite3_vtab *pVTab); 7955 int (*xDestroy)(sqlite3_vtab *pVTab); 7956 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); 7957 int (*xClose)(sqlite3_vtab_cursor*); [all …]
|