Home
last modified time | relevance | path

Searched refs:ppVTab (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/src/
H A Dvtab.c273 VTable **ppVTab; in sqlite3VtabDisconnect() local
279 for(ppVTab=&p->u.vtab.p; *ppVTab; ppVTab=&(*ppVTab)->pNext){ in sqlite3VtabDisconnect()
280 if( (*ppVTab)->db==db ){ in sqlite3VtabDisconnect()
281 VTable *pVTab = *ppVTab; in sqlite3VtabDisconnect()
282 *ppVTab = pVTab->pNext; in sqlite3VtabDisconnect()
H A Dsqlite.h.in7036 sqlite3_vtab **ppVTab, char**);
7039 sqlite3_vtab **ppVTab, char**);
/sqlite-3.40.0/ext/misc/
H A Dspellfix.c2048 sqlite3_vtab **ppVTab, in spellfix1Init() argument
2122 *ppVTab = 0; in spellfix1Init()
2125 *ppVTab = (sqlite3_vtab *)pNew; in spellfix1Init()
2137 sqlite3_vtab **ppVTab, in spellfix1Connect() argument
2140 return spellfix1Init(0, db, pAux, argc, argv, ppVTab, pzErr); in spellfix1Connect()
2146 sqlite3_vtab **ppVTab, in spellfix1Create() argument
2149 return spellfix1Init(1, db, pAux, argc, argv, ppVTab, pzErr); in spellfix1Create()
/sqlite-3.40.0/ext/fts1/
H A Dfulltext.c860 sqlite3_vtab **ppVTab, in fulltextConnect() argument
903 *ppVTab = &v->base; in fulltextConnect()
912 sqlite3_vtab **ppVTab, in fulltextCreate() argument
949 return fulltextConnect(db, pAux, argc, argv, ppVTab, pzErr); in fulltextCreate()
H A Dfts1.c1939 sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ in constructVtab() argument
1994 *ppVTab = &v->base; in constructVtab()
2008 sqlite3_vtab **ppVTab, in fulltextConnect() argument
2015 rc = constructVtab(db, &spec, ppVTab, pzErr); in fulltextConnect()
2057 sqlite3_vtab **ppVTab, char **pzErr){ in fulltextCreate() argument
2079 rc = constructVtab(db, &spec, ppVTab, pzErr); in fulltextCreate()
/sqlite-3.40.0/test/
H A Dvt02.c216 sqlite3_vtab **ppVTab, /* Write the new vtab here */ in vt02Connect() argument
245 *ppVTab = &pVtab->parent; in vt02Connect()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_vocab.c174 sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ in fts5VocabInitVtab() argument
222 *ppVTab = (sqlite3_vtab*)pRet; in fts5VocabInitVtab()
H A Dfts5_main.c362 sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ in fts5InitVtab() argument
414 *ppVTab = (sqlite3_vtab*)pTab; in fts5InitVtab()
/sqlite-3.40.0/ext/fts2/
H A Dfts2.c2808 sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ in constructVtab() argument
2873 *ppVTab = &v->base; in constructVtab()
2887 sqlite3_vtab **ppVTab, in fulltextConnect() argument
2894 rc = constructVtab(db, (fts2Hash *)pAux, &spec, ppVTab, pzErr); in fulltextConnect()
2907 sqlite3_vtab **ppVTab, char **pzErr){ in fulltextCreate() argument
2940 rc = constructVtab(db, (fts2Hash *)pAux, &spec, ppVTab, pzErr); in fulltextCreate()
/sqlite-3.40.0/ext/fts3/
H A Dfts3.c1178 sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ in fts3InitVtab() argument
1547 *ppVTab = &p->base; in fts3InitVtab()