Searched defs:sqlite3_module (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.h | 4769 struct sqlite3_module { struct 4770 int iVersion; 4771 int (*xCreate)(sqlite3*, void *pAux, 4774 int (*xConnect)(sqlite3*, void *pAux, 4779 int (*xDestroy)(sqlite3_vtab *pVTab); 4781 int (*xClose)(sqlite3_vtab_cursor*); 4784 int (*xNext)(sqlite3_vtab_cursor*); 4785 int (*xEof)(sqlite3_vtab_cursor*); 4789 int (*xBegin)(sqlite3_vtab *pVTab); 4790 int (*xSync)(sqlite3_vtab *pVTab); [all …]
|
| H A D | sqlite3.c | 5322 struct sqlite3_module { struct 5323 int iVersion; 5324 int (*xCreate)(sqlite3*, void *pAux, 5327 int (*xConnect)(sqlite3*, void *pAux, 5332 int (*xDestroy)(sqlite3_vtab *pVTab); 5334 int (*xClose)(sqlite3_vtab_cursor*); 5337 int (*xNext)(sqlite3_vtab_cursor*); 5338 int (*xEof)(sqlite3_vtab_cursor*); 5342 int (*xBegin)(sqlite3_vtab *pVTab); 5343 int (*xSync)(sqlite3_vtab *pVTab); [all …]
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 6708 struct sqlite3_module { struct 6709 int iVersion; 6710 int (*xCreate)(sqlite3*, void *pAux, 6713 int (*xConnect)(sqlite3*, void *pAux, 6720 int (*xClose)(sqlite3_vtab_cursor*); 6723 int (*xNext)(sqlite3_vtab_cursor*); 6724 int (*xEof)(sqlite3_vtab_cursor*); 6728 int (*xBegin)(sqlite3_vtab *pVTab); 6729 int (*xSync)(sqlite3_vtab *pVTab); 6730 int (*xCommit)(sqlite3_vtab *pVTab); [all …]
|
| H A D | sqlite3.c | 7747 struct sqlite3_module { struct 7748 int iVersion; 7749 int (*xCreate)(sqlite3*, void *pAux, 7752 int (*xConnect)(sqlite3*, void *pAux, 7759 int (*xClose)(sqlite3_vtab_cursor*); 7762 int (*xNext)(sqlite3_vtab_cursor*); 7763 int (*xEof)(sqlite3_vtab_cursor*); 7767 int (*xBegin)(sqlite3_vtab *pVTab); 7768 int (*xSync)(sqlite3_vtab *pVTab); 7769 int (*xCommit)(sqlite3_vtab *pVTab); [all …]
|