Lines Matching refs:pVTab
1926 spellfix1_vtab *pVTab; /* The table to which this cursor belongs */ member
1978 static int spellfix1Uninit(int isDestroy, sqlite3_vtab *pVTab){ in spellfix1Uninit() argument
1979 spellfix1_vtab *p = (spellfix1_vtab*)pVTab; in spellfix1Uninit()
1994 static int spellfix1Disconnect(sqlite3_vtab *pVTab){ in spellfix1Disconnect() argument
1995 return spellfix1Uninit(0, pVTab); in spellfix1Disconnect()
1997 static int spellfix1Destroy(sqlite3_vtab *pVTab){ in spellfix1Destroy() argument
1998 return spellfix1Uninit(1, pVTab); in spellfix1Destroy()
2331 static int spellfix1Open(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ in spellfix1Open() argument
2332 spellfix1_vtab *p = (spellfix1_vtab*)pVTab; in spellfix1Open()
2337 pCur->pVTab = p; in spellfix1Open()
2543 spellfix1_vtab *p = pCur->pVTab; /* The virtual table that owns pCur */ in spellfix1FilterForMatch()
2649 spellfix1_vtab *pVTab = pCur->pVTab; in spellfix1FilterForFullScan() local
2654 pVTab->zDbName, pVTab->zTableName, in spellfix1FilterForFullScan()
2658 rc = sqlite3_prepare_v2(pVTab->db, zSql, -1, &pCur->pFullScan, 0); in spellfix1FilterForFullScan()
2852 sqlite3_vtab *pVTab, in spellfix1Update() argument
2859 spellfix1_vtab *p = (spellfix1_vtab*)pVTab; in spellfix1Update()
2888 pVTab->zErrMsg = sqlite3_mprintf("NOT NULL constraint failed: %s.word", in spellfix1Update()
2910 pVTab->zErrMsg = sqlite3_mprintf("unknown value for %s.command: \"%w\"", in spellfix1Update()
2966 static int spellfix1Rename(sqlite3_vtab *pVTab, const char *zNew){ in spellfix1Rename() argument
2967 spellfix1_vtab *p = (spellfix1_vtab*)pVTab; in spellfix1Rename()