Lines Matching defs:bytecodevtab_cursor
31 typedef struct bytecodevtab_cursor bytecodevtab_cursor; typedef
32 struct bytecodevtab_cursor { struct
33 sqlite3_vtab_cursor base; /* Base class - must be first */
34 sqlite3_stmt *pStmt; /* The statement whose bytecode is displayed */
35 int iRowid; /* The rowid of the output table */
36 int iAddr; /* Address */
37 int needFinalize; /* Cursors owns pStmt and must finalize it */
38 int showSubprograms; /* Provide a listing of subprograms */
39 Op *aOp; /* Operand array */
40 char *zP4; /* Rendered P4 value */
41 const char *zType; /* tables_used.type */
42 const char *zSchema; /* tables_used.schema */
43 const char *zName; /* tables_used.name */
44 Mem sub; /* Subprograms */