Searched defs:ppArg (Results 1 - 3 of 3) sorted by relevance
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
H A D | fulltext.c | 1452 static int fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, argument 1457 return index_delete(v, sqlite3_value_int64(ppArg[0])); 1460 if( sqlite3_value_type(ppArg[0]) != SQLITE_NULL ){ 1464 assert( nArg==3 ); /* ppArg[1] = rowid, ppArg[2] = content */ 1465 return index_insert(v, ppArg[1], 1466 (const char *)sqlite3_value_text(ppArg[2]), pRowid);
|
H A D | fts1.c | 3151 static int fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, argument 3163 rc = index_delete(v, sqlite3_value_int64(ppArg[0]), &terms); 3164 } else if( sqlite3_value_type(ppArg[0]) != SQLITE_NULL ){ 3166 * ppArg[0] = old rowid 3167 * ppArg[1] = new rowid 3168 * ppArg[2..2+v->nColumn-1] = values 3169 * ppArg[2+v->nColumn] = value for magic column (we ignore this) 3171 sqlite_int64 rowid = sqlite3_value_int64(ppArg[0]); 3172 if( sqlite3_value_type(ppArg[1]) != SQLITE_INTEGER || 3173 sqlite3_value_int64(ppArg[ [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
H A D | fts2.c | 6251 static int fulltextUpdate(sqlite3_vtab *pVtab, int nArg, sqlite3_value **ppArg, argument 6259 rc = index_delete(v, sqlite3_value_int64(ppArg[0])); 6277 } else if( sqlite3_value_type(ppArg[0]) != SQLITE_NULL ){ 6279 * ppArg[0] = old rowid 6280 * ppArg[1] = new rowid 6281 * ppArg[2..2+v->nColumn-1] = values 6282 * ppArg[2+v->nColumn] = value for magic column (we ignore this) 6284 sqlite_int64 rowid = sqlite3_value_int64(ppArg[0]); 6285 if( sqlite3_value_type(ppArg[1]) != SQLITE_INTEGER || 6286 sqlite3_value_int64(ppArg[ [all...] |
Completed in 140 milliseconds