Home
last modified time | relevance | path

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

/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3.h2368 typedef struct sqlite3_module sqlite3_module; typedef
2375 struct sqlite3_module { struct
2376 int iVersion;
2377 int (*xCreate)(sqlite3*, void *pAux,
2380 int (*xConnect)(sqlite3*, void *pAux,
2383 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
2407 ** method of an sqlite3_module. The fields under **Inputs** are the argument
/external/sqlite/dist/
Dsqlite3.h4130 typedef struct sqlite3_module sqlite3_module; typedef
4149 struct sqlite3_module { struct
4150 int iVersion;
4151 int (*xCreate)(sqlite3*, void *pAux,
4154 int (*xConnect)(sqlite3*, void *pAux,
4157 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
4158 int (*xDisconnect)(sqlite3_vtab *pVTab);
4159 int (*xDestroy)(sqlite3_vtab *pVTab);
4160 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4161 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
Dsqlite3.c4654 typedef struct sqlite3_module sqlite3_module; typedef
4673 struct sqlite3_module { struct
4674 int iVersion;
4675 int (*xCreate)(sqlite3*, void *pAux,
4678 int (*xConnect)(sqlite3*, void *pAux,
4681 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
4682 int (*xDisconnect)(sqlite3_vtab *pVTab);
4683 int (*xDestroy)(sqlite3_vtab *pVTab);
4684 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4685 int (*xClose)(sqlite3_vtab_cursor*);
[all …]