Lines Matching refs:sqlite3_vtab
6918 typedef struct sqlite3_vtab sqlite3_vtab; typedef
6943 sqlite3_vtab **ppVTab, char**);
6946 sqlite3_vtab **ppVTab, char**);
6947 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
6948 int (*xDisconnect)(sqlite3_vtab *pVTab);
6949 int (*xDestroy)(sqlite3_vtab *pVTab);
6950 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6958 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
6959 int (*xBegin)(sqlite3_vtab *pVTab);
6960 int (*xSync)(sqlite3_vtab *pVTab);
6961 int (*xCommit)(sqlite3_vtab *pVTab);
6962 int (*xRollback)(sqlite3_vtab *pVTab);
6963 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
6966 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
6969 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
6970 int (*xRelease)(sqlite3_vtab *pVTab, int);
6971 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7225 struct sqlite3_vtab { struct
7250 sqlite3_vtab *pVtab; /* Virtual table of this cursor */ argument