Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts1/
H A Dfts1.c3151 static int fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, in fulltextUpdate() argument
3163 rc = index_delete(v, sqlite3_value_int64(ppArg[0]), &terms); in fulltextUpdate()
3164 } else if( sqlite3_value_type(ppArg[0]) != SQLITE_NULL ){ in fulltextUpdate()
3171 sqlite_int64 rowid = sqlite3_value_int64(ppArg[0]); in fulltextUpdate()
3172 if( sqlite3_value_type(ppArg[1]) != SQLITE_INTEGER || in fulltextUpdate()
3173 sqlite3_value_int64(ppArg[1]) != rowid ){ in fulltextUpdate()
3177 rc = index_update(v, rowid, &ppArg[2], &terms); in fulltextUpdate()
3186 rc = index_insert(v, ppArg[1], &ppArg[2], pRowid, &terms); in fulltextUpdate()
3274 void **ppArg in fulltextFindFunction() argument
H A Dfulltext.c1464 static int fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, in fulltextUpdate() argument
1469 return index_delete(v, sqlite3_value_int64(ppArg[0])); in fulltextUpdate()
1472 if( sqlite3_value_type(ppArg[0]) != SQLITE_NULL ){ in fulltextUpdate()
1477 return index_insert(v, ppArg[1], in fulltextUpdate()
1478 (const char *)sqlite3_value_text(ppArg[2]), pRowid); in fulltextUpdate()
/sqlite-3.40.0/ext/misc/
H A Dvtshim.c369 void **ppArg in vtshimFindFunction() argument
375 rc = pAux->pMod->xFindFunction(pVtab->pChild, nArg, zName, pxFunc, ppArg); in vtshimFindFunction()
H A Dzipfile.c1899 void **ppArg /* OUT: User data for *pxFunc */ in zipfileFindFunction() argument
1903 *ppArg = (void*)pVtab; in zipfileFindFunction()
/sqlite-3.40.0/ext/fts2/
H A Dfts2.c5873 static int fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, in fulltextUpdate() argument
5881 rc = index_delete(v, sqlite3_value_int64(ppArg[0])); in fulltextUpdate()
5899 } else if( sqlite3_value_type(ppArg[0]) != SQLITE_NULL ){ in fulltextUpdate()
5906 sqlite_int64 rowid = sqlite3_value_int64(ppArg[0]); in fulltextUpdate()
5907 if( sqlite3_value_type(ppArg[1]) != SQLITE_INTEGER || in fulltextUpdate()
5908 sqlite3_value_int64(ppArg[1]) != rowid ){ in fulltextUpdate()
5912 rc = index_update(v, rowid, &ppArg[2]); in fulltextUpdate()
5921 rc = index_insert(v, ppArg[1], &ppArg[2], pRowid); in fulltextUpdate()
6682 void **ppArg in fulltextFindFunction() argument
/sqlite-3.40.0/src/
H A Dtest8.c1245 void **ppArg in echoFindFunction() argument
1257 *ppArg = interp; in echoFindFunction()
H A Dsqlite.h.in7058 void **ppArg);
/sqlite-3.40.0/ext/rtree/
H A Dgeopoly.c1722 void **ppArg in geopolyFindFunction() argument
1726 *ppArg = 0; in geopolyFindFunction()
1731 *ppArg = 0; in geopolyFindFunction()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_main.c2529 void **ppArg /* OUT: User data for *pxFunc */ in fts5FindFunctionMethod() argument
2538 *ppArg = (void*)pAux; in fts5FindFunctionMethod()
/sqlite-3.40.0/ext/fts3/
H A Dfts3.c3838 void **ppArg /* Unused */ in fts3FindFunctionMethod() argument
3853 UNUSED_PARAMETER(ppArg); in fts3FindFunctionMethod()