HomeSort by relevance Sort by last modified time
    Searched refs:aDoclist (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h 170 sqlite3_int64 iPrevId; /* Previous id read from aDoclist */
171 char *pNextId; /* Pointer into the body of aDoclist */
172 char *aDoclist; /* List of docids for full-text queries */
173 int nDoclist; /* Size of buffer at aDoclist */
239 ** is true, then aDoclist points to a malloced buffer, size nDoclist bytes,
245 ** aDoclist. Since the doclist is usually scanned in docid order, this can
256 int isLoaded; /* True if aDoclist/nDoclist are initialized. */
257 char *aDoclist; /* Buffer containing doclist */
258 int nDoclist; /* Size of aDoclist in bytes */
345 char *aDoclist; /* Pointer to doclist buffer *
    [all...]
fts3.c     [all...]
fts3_write.c 106 char *aDoclist; /* Pointer to doclist of current entry */
917 if( !pReader->aDoclist ){
920 pNext = &pReader->aDoclist[pReader->nDoclist];
935 pReader->aNode = pReader->aDoclist = pList->aData;
    [all...]
fts3_aux.c 254 char *aDoclist = pCsr->csr.aDoclist;
275 i += sqlite3Fts3GetVarint(&aDoclist[i], &v);
fts3_snippet.c 39 ** Fts3Expr.aDoclist[]/nDoclist.
181 ** (Fts3Expr.aDoclist[]) and the doclists associated with all phrase nodes
226 ** for each phrase into Fts3Expr.aDoclist[]/nDoclist. See also
858 pIter = pExpr->aDoclist;
859 pEnd = &pExpr->aDoclist[pExpr->nDoclist];
888 if( pExpr->aDoclist ){
    [all...]
fts3_expr.c 745 sqlite3_free(p->aDoclist);

Completed in 34 milliseconds