Home | History | Annotate | Download | only in dist

Lines Matching full:sqlite3_vtab

6089 typedef struct sqlite3_vtab sqlite3_vtab;
6114 sqlite3_vtab **ppVTab, char**);
6117 sqlite3_vtab **ppVTab, char**);
6118 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
6119 int (*xDisconnect)(sqlite3_vtab *pVTab);
6120 int (*xDestroy)(sqlite3_vtab *pVTab);
6121 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6129 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
6130 int (*xBegin)(sqlite3_vtab *pVTab);
6131 int (*xSync)(sqlite3_vtab *pVTab);
6132 int (*xCommit)(sqlite3_vtab *pVTab);
6133 int (*xRollback)(sqlite3_vtab *pVTab);
6134 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
6137 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
6140 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
6141 int (*xRelease)(sqlite3_vtab *pVTab, int);
6142 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
6343 ** KEYWORDS: sqlite3_vtab
6359 struct sqlite3_vtab {
6384 sqlite3_vtab *pVtab; /* Virtual table of this cursor */