Searched refs:ppArg (Results 1 – 10 of 10) sorted by relevance
| /sqlite-3.40.0/ext/fts1/ |
| H A D | fts1.c | 3151 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 D | fulltext.c | 1464 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 D | vtshim.c | 369 void **ppArg in vtshimFindFunction() argument 375 rc = pAux->pMod->xFindFunction(pVtab->pChild, nArg, zName, pxFunc, ppArg); in vtshimFindFunction()
|
| H A D | zipfile.c | 1899 void **ppArg /* OUT: User data for *pxFunc */ in zipfileFindFunction() argument 1903 *ppArg = (void*)pVtab; in zipfileFindFunction()
|
| /sqlite-3.40.0/ext/fts2/ |
| H A D | fts2.c | 5873 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 D | test8.c | 1245 void **ppArg in echoFindFunction() argument 1257 *ppArg = interp; in echoFindFunction()
|
| H A D | sqlite.h.in | 7058 void **ppArg);
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | geopoly.c | 1722 void **ppArg in geopolyFindFunction() argument 1726 *ppArg = 0; in geopolyFindFunction() 1731 *ppArg = 0; in geopolyFindFunction()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_main.c | 2529 void **ppArg /* OUT: User data for *pxFunc */ in fts5FindFunctionMethod() argument 2538 *ppArg = (void*)pAux; in fts5FindFunctionMethod()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3.c | 3838 void **ppArg /* Unused */ in fts3FindFunctionMethod() argument 3853 UNUSED_PARAMETER(ppArg); in fts3FindFunctionMethod()
|