Lines Matching refs:sqlite3_vtab
6687 typedef struct sqlite3_vtab sqlite3_vtab; typedef
6712 sqlite3_vtab **ppVTab, char**);
6715 sqlite3_vtab **ppVTab, char**);
6716 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
6717 int (*xDisconnect)(sqlite3_vtab *pVTab);
6718 int (*xDestroy)(sqlite3_vtab *pVTab);
6719 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6727 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
6728 int (*xBegin)(sqlite3_vtab *pVTab);
6729 int (*xSync)(sqlite3_vtab *pVTab);
6730 int (*xCommit)(sqlite3_vtab *pVTab);
6731 int (*xRollback)(sqlite3_vtab *pVTab);
6732 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
6735 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
6738 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
6739 int (*xRelease)(sqlite3_vtab *pVTab, int);
6740 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
6994 struct sqlite3_vtab { struct
7019 sqlite3_vtab *pVtab; /* Virtual table of this cursor */ argument