Lines Matching defs:sqlite3_vtab
7292 typedef struct sqlite3_vtab sqlite3_vtab;
7317 sqlite3_vtab **ppVTab, char**);
7320 sqlite3_vtab **ppVTab, char**);
7321 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7322 int (*xDisconnect)(sqlite3_vtab *pVTab);
7323 int (*xDestroy)(sqlite3_vtab *pVTab);
7324 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7332 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7333 int (*xBegin)(sqlite3_vtab *pVTab);
7334 int (*xSync)(sqlite3_vtab *pVTab);
7335 int (*xCommit)(sqlite3_vtab *pVTab);
7336 int (*xRollback)(sqlite3_vtab *pVTab);
7337 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7340 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7343 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7344 int (*xRelease)(sqlite3_vtab *pVTab, int);
7345 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7351 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,
7619 ** KEYWORDS: sqlite3_vtab
7635 struct sqlite3_vtab {
7660 sqlite3_vtab *pVtab; /* Virtual table of this cursor */