Lines Matching defs:completion_cursor
8174 typedef struct completion_cursor completion_cursor; typedef
8175 struct completion_cursor { struct
8176 sqlite3_vtab_cursor base; /* Base class - must be first */
8177 sqlite3 *db; /* Database connection for this cursor */
8178 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */
8179 char *zPrefix; /* The prefix for the word we want to complete */
8180 char *zLine; /* The whole that we want to complete */
8181 const char *zCurrentRow; /* Current output row */
8182 int szRow; /* Length of the zCurrentRow string */
8183 sqlite3_stmt *pStmt; /* Current statement */
8184 sqlite3_int64 iRowid; /* The rowid */
8185 int ePhase; /* Current phase */
8186 int j; /* inter-phase counter */