Lines Matching defs:completion_cursor
5596 typedef struct completion_cursor completion_cursor; typedef
5597 struct completion_cursor { struct
5598 sqlite3_vtab_cursor base; /* Base class - must be first */
5599 sqlite3 *db; /* Database connection for this cursor */
5600 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */
5601 char *zPrefix; /* The prefix for the word we want to complete */
5602 char *zLine; /* The whole that we want to complete */
5603 const char *zCurrentRow; /* Current output row */
5604 int szRow; /* Length of the zCurrentRow string */
5605 sqlite3_stmt *pStmt; /* Current statement */
5606 sqlite3_int64 iRowid; /* The rowid */
5607 int ePhase; /* Current phase */
5608 int j; /* inter-phase counter */