Searched defs:pUpdate (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c289 /* Doclist multi-tool. Pass pUpdate==NULL to delete the indicated docid;
290 * otherwise pUpdate, which must contain only the single docid [iDocid], is
292 static int docListUpdate(DocList *d, sqlite_int64 iDocid, DocList *pUpdate){ argument
297 if( pUpdate!=NULL ){
298 assert( d->iType==pUpdate->iType);
299 assert( iDocid==firstDocid(pUpdate) );
317 if( pUpdate!=NULL ){
319 docListAddEndPos(pUpdate);
321 d->pData = realloc(d->pData, d->nData+pUpdate->nData);
324 memmove(p+pUpdate
[all...]
H A Dfts1.c622 /* Insert/update pUpdate into the doclist. */
623 static void docListUpdate(DocList *d, DocList *pUpdate){ argument
626 assert( d!=NULL && pUpdate!=NULL );
627 assert( d->iType==pUpdate->iType);
630 docListSpliceElement(&reader, firstDocid(pUpdate),
631 pUpdate->pData, pUpdate->nData);
634 /* Propagate elements from pUpdate to pAcc, overwriting elements with
637 static void docListAccumulate(DocList *pAcc, DocList *pUpdate){ argument
642 if( pUpdate
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c141128 sqlite3_stmt *pUpdate = 0; /* Update statement to modify idx values */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c141160 sqlite3_stmt *pUpdate = 0; /* Update statement to modify idx values */ local
[all...]

Completed in 480 milliseconds