Lines Matching refs:sqlite3_vtab
7499 typedef struct sqlite3_vtab sqlite3_vtab; typedef
7524 sqlite3_vtab **ppVTab, char**);
7527 sqlite3_vtab **ppVTab, char**);
7528 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7529 int (*xDisconnect)(sqlite3_vtab *pVTab);
7530 int (*xDestroy)(sqlite3_vtab *pVTab);
7531 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7539 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
7540 int (*xBegin)(sqlite3_vtab *pVTab);
7541 int (*xSync)(sqlite3_vtab *pVTab);
7542 int (*xCommit)(sqlite3_vtab *pVTab);
7543 int (*xRollback)(sqlite3_vtab *pVTab);
7544 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7547 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
7550 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
7551 int (*xRelease)(sqlite3_vtab *pVTab, int);
7552 int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
7558 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,
7846 struct sqlite3_vtab { struct
7871 sqlite3_vtab *pVtab; /* Virtual table of this cursor */ argument