Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h7666 typedef struct sqlite3_module sqlite3_module; typedef
7684 struct sqlite3_module { struct
7685 int iVersion;
7686 int (*xCreate)(sqlite3*, void *pAux,
7689 int (*xConnect)(sqlite3*, void *pAux,
7692 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7693 int (*xDisconnect)(sqlite3_vtab *pVTab);
7694 int (*xDestroy)(sqlite3_vtab *pVTab);
7695 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7696 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
H A Dsqlite3.c7987 typedef struct sqlite3_module sqlite3_module; typedef
8005 struct sqlite3_module { struct
8006 int iVersion;
8007 int (*xCreate)(sqlite3*, void *pAux,
8010 int (*xConnect)(sqlite3*, void *pAux,
8013 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
8014 int (*xDisconnect)(sqlite3_vtab *pVTab);
8015 int (*xDestroy)(sqlite3_vtab *pVTab);
8016 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
8017 int (*xClose)(sqlite3_vtab_cursor*);
[all …]