Fts3Cursor       113071 third_party/sqlite/amalgamation/sqlite3.c typedef struct Fts3Cursor Fts3Cursor;
Fts3Cursor       113260 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3SegReaderCost(Fts3Cursor *, Fts3SegReader *, int *);
Fts3Cursor       113268 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *);
Fts3Cursor       113269 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3DeferToken(Fts3Cursor *, Fts3PhraseToken *, int);
Fts3Cursor       113270 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *);
Fts3Cursor       113271 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *);
Fts3Cursor       113326 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3ExprLoadDoclist(Fts3Cursor *, Fts3Expr *);
Fts3Cursor       113327 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3ExprLoadFtDoclist(Fts3Cursor *, Fts3Expr *, char **, int *);
Fts3Cursor       113339 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3Fts3Offsets(sqlite3_context*, Fts3Cursor*);
Fts3Cursor       113340 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3Fts3Snippet(sqlite3_context *, Fts3Cursor *, const char *,
Fts3Cursor       113343 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3Fts3Matchinfo(sqlite3_context *, Fts3Cursor *, const char *);
Fts3Cursor       114164 third_party/sqlite/amalgamation/sqlite3.c   *ppCsr = pCsr = (sqlite3_vtab_cursor *)sqlite3_malloc(sizeof(Fts3Cursor));
Fts3Cursor       114168 third_party/sqlite/amalgamation/sqlite3.c   memset(pCsr, 0, sizeof(Fts3Cursor));
Fts3Cursor       114177 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr = (Fts3Cursor *)pCursor;
Fts3Cursor       114193 third_party/sqlite/amalgamation/sqlite3.c static int fts3CursorSeek(sqlite3_context *pContext, Fts3Cursor *pCsr){
Fts3Cursor       115251 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* Virtual table cursor handle */
Fts3Cursor       115382 third_party/sqlite/amalgamation/sqlite3.c static int fts3DeferExpression(Fts3Cursor *pCsr, Fts3Expr *pExpr){
Fts3Cursor       115440 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* Virtual table cursor handle */
Fts3Cursor       115689 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* FTS3 table */
Fts3Cursor       115829 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *p,                  /* Virtual table cursor handle */
Fts3Cursor       116009 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* FTS3 cursor pointing at row to test */
Fts3Cursor       116047 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr = (Fts3Cursor *)pCursor;
Fts3Cursor       116103 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr = (Fts3Cursor *)pCursor;
Fts3Cursor       116117 third_party/sqlite/amalgamation/sqlite3.c   memset(&pCursor[1], 0, sizeof(Fts3Cursor)-sizeof(sqlite3_vtab_cursor));
Fts3Cursor       116175 third_party/sqlite/amalgamation/sqlite3.c   return ((Fts3Cursor *)pCursor)->isEof;
Fts3Cursor       116185 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr = (Fts3Cursor *) pCursor;
Fts3Cursor       116209 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr = (Fts3Cursor *) pCursor;
Fts3Cursor       116296 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3ExprLoadDoclist(Fts3Cursor *pCsr, Fts3Expr *pExpr){
Fts3Cursor       116305 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr, 
Fts3Cursor       116389 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor **ppCsr              /* OUT: Store cursor handle here */
Fts3Cursor       116391 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pRet;
Fts3Cursor       116393 third_party/sqlite/amalgamation/sqlite3.c    || sqlite3_value_bytes(pVal)!=sizeof(Fts3Cursor *)
Fts3Cursor       116400 third_party/sqlite/amalgamation/sqlite3.c   memcpy(&pRet, sqlite3_value_blob(pVal), sizeof(Fts3Cursor *));
Fts3Cursor       116413 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr;               /* Cursor handle passed through apVal[0] */
Fts3Cursor       116454 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr;               /* Cursor handle passed through apVal[0] */
Fts3Cursor       116482 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCursor;            /* Cursor handle passed through apVal[0] */
Fts3Cursor       116514 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr;               /* Cursor handle passed through apVal[0] */
Fts3Cursor       120976 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* FTS3 cursor handle */
Fts3Cursor       122420 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *pCsr){
Fts3Cursor       122435 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *pCsr){
Fts3Cursor       122454 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *pCsr){
Fts3Cursor       122509 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* Fts3 table cursor */
Fts3Cursor       122676 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr;               /* FTS3 Cursor */
Fts3Cursor       122690 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr;               /* Cursor snippet is being generated from */
Fts3Cursor       122720 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCursor;            /* FTS3 Cursor */
Fts3Cursor       122893 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* Fts3 cursor for current query */
Fts3Cursor       123084 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* Cursor to create snippet for */
Fts3Cursor       123282 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* FTS3 Cursor */
Fts3Cursor       123461 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr = p->pCursor;
Fts3Cursor       123674 third_party/sqlite/amalgamation/sqlite3.c static int fts3MatchinfoLcs(Fts3Cursor *pCsr, MatchInfo *pInfo){
Fts3Cursor       123765 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* FTS3 cursor object */
Fts3Cursor       123868 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* FTS3 Cursor object */
Fts3Cursor       123937 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* Cursor object */
Fts3Cursor       124083 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr                /* Cursor object */
Fts3Cursor       124219 third_party/sqlite/amalgamation/sqlite3.c   Fts3Cursor *pCsr,               /* FTS3 table cursor */
Fts3Cursor       1114 third_party/sqlite/src/ext/fts3/fts3.c   *ppCsr = pCsr = (sqlite3_vtab_cursor *)sqlite3_malloc(sizeof(Fts3Cursor));
Fts3Cursor       1118 third_party/sqlite/src/ext/fts3/fts3.c   memset(pCsr, 0, sizeof(Fts3Cursor));
Fts3Cursor       1127 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr = (Fts3Cursor *)pCursor;
Fts3Cursor       1143 third_party/sqlite/src/ext/fts3/fts3.c static int fts3CursorSeek(sqlite3_context *pContext, Fts3Cursor *pCsr){
Fts3Cursor       2201 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr,               /* Virtual table cursor handle */
Fts3Cursor       2332 third_party/sqlite/src/ext/fts3/fts3.c static int fts3DeferExpression(Fts3Cursor *pCsr, Fts3Expr *pExpr){
Fts3Cursor       2390 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr,               /* Virtual table cursor handle */
Fts3Cursor       2639 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr,               /* FTS3 table */
Fts3Cursor       2779 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *p,                  /* Virtual table cursor handle */
Fts3Cursor       2959 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr,               /* FTS3 cursor pointing at row to test */
Fts3Cursor       2997 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr = (Fts3Cursor *)pCursor;
Fts3Cursor       3053 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr = (Fts3Cursor *)pCursor;
Fts3Cursor       3067 third_party/sqlite/src/ext/fts3/fts3.c   memset(&pCursor[1], 0, sizeof(Fts3Cursor)-sizeof(sqlite3_vtab_cursor));
Fts3Cursor       3125 third_party/sqlite/src/ext/fts3/fts3.c   return ((Fts3Cursor *)pCursor)->isEof;
Fts3Cursor       3135 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr = (Fts3Cursor *) pCursor;
Fts3Cursor       3159 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr = (Fts3Cursor *) pCursor;
Fts3Cursor       3246 third_party/sqlite/src/ext/fts3/fts3.c int sqlite3Fts3ExprLoadDoclist(Fts3Cursor *pCsr, Fts3Expr *pExpr){
Fts3Cursor       3255 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr, 
Fts3Cursor       3339 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor **ppCsr              /* OUT: Store cursor handle here */
Fts3Cursor       3341 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pRet;
Fts3Cursor       3343 third_party/sqlite/src/ext/fts3/fts3.c    || sqlite3_value_bytes(pVal)!=sizeof(Fts3Cursor *)
Fts3Cursor       3350 third_party/sqlite/src/ext/fts3/fts3.c   memcpy(&pRet, sqlite3_value_blob(pVal), sizeof(Fts3Cursor *));
Fts3Cursor       3363 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr;               /* Cursor handle passed through apVal[0] */
Fts3Cursor       3404 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr;               /* Cursor handle passed through apVal[0] */
Fts3Cursor       3432 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCursor;            /* Cursor handle passed through apVal[0] */
Fts3Cursor       3464 third_party/sqlite/src/ext/fts3/fts3.c   Fts3Cursor *pCsr;               /* Cursor handle passed through apVal[0] */
Fts3Cursor        102 third_party/sqlite/src/ext/fts3/fts3Int.h typedef struct Fts3Cursor Fts3Cursor;
Fts3Cursor        291 third_party/sqlite/src/ext/fts3/fts3Int.h int sqlite3Fts3SegReaderCost(Fts3Cursor *, Fts3SegReader *, int *);
Fts3Cursor        299 third_party/sqlite/src/ext/fts3/fts3Int.h void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *);
Fts3Cursor        300 third_party/sqlite/src/ext/fts3/fts3Int.h int sqlite3Fts3DeferToken(Fts3Cursor *, Fts3PhraseToken *, int);
Fts3Cursor        301 third_party/sqlite/src/ext/fts3/fts3Int.h int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *);
Fts3Cursor        302 third_party/sqlite/src/ext/fts3/fts3Int.h void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *);
Fts3Cursor        357 third_party/sqlite/src/ext/fts3/fts3Int.h int sqlite3Fts3ExprLoadDoclist(Fts3Cursor *, Fts3Expr *);
Fts3Cursor        358 third_party/sqlite/src/ext/fts3/fts3Int.h int sqlite3Fts3ExprLoadFtDoclist(Fts3Cursor *, Fts3Expr *, char **, int *);
Fts3Cursor        370 third_party/sqlite/src/ext/fts3/fts3Int.h void sqlite3Fts3Offsets(sqlite3_context*, Fts3Cursor*);
Fts3Cursor        371 third_party/sqlite/src/ext/fts3/fts3Int.h void sqlite3Fts3Snippet(sqlite3_context *, Fts3Cursor *, const char *,
Fts3Cursor        374 third_party/sqlite/src/ext/fts3/fts3Int.h void sqlite3Fts3Matchinfo(sqlite3_context *, Fts3Cursor *, const char *);
Fts3Cursor         43 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr;               /* FTS3 Cursor */
Fts3Cursor         57 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr;               /* Cursor snippet is being generated from */
Fts3Cursor         87 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCursor;            /* FTS3 Cursor */
Fts3Cursor        260 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr,               /* Fts3 cursor for current query */
Fts3Cursor        451 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr,               /* Cursor to create snippet for */
Fts3Cursor        649 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr,               /* FTS3 Cursor */
Fts3Cursor        828 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr = p->pCursor;
Fts3Cursor       1041 third_party/sqlite/src/ext/fts3/fts3_snippet.c static int fts3MatchinfoLcs(Fts3Cursor *pCsr, MatchInfo *pInfo){
Fts3Cursor       1132 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr,               /* FTS3 cursor object */
Fts3Cursor       1235 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr,               /* FTS3 Cursor object */
Fts3Cursor       1304 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr,               /* Cursor object */
Fts3Cursor       1450 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr                /* Cursor object */
Fts3Cursor       1586 third_party/sqlite/src/ext/fts3/fts3_snippet.c   Fts3Cursor *pCsr,               /* FTS3 table cursor */
Fts3Cursor       1070 third_party/sqlite/src/ext/fts3/fts3_write.c   Fts3Cursor *pCsr,               /* FTS3 cursor handle */
Fts3Cursor       2514 third_party/sqlite/src/ext/fts3/fts3_write.c void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *pCsr){
Fts3Cursor       2529 third_party/sqlite/src/ext/fts3/fts3_write.c void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *pCsr){
Fts3Cursor       2548 third_party/sqlite/src/ext/fts3/fts3_write.c int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *pCsr){
Fts3Cursor       2603 third_party/sqlite/src/ext/fts3/fts3_write.c   Fts3Cursor *pCsr,               /* Fts3 table cursor */