Lines Matching defs:StatCursor
231456 typedef struct StatCursor StatCursor; typedef
231487 struct StatCursor { struct
231488 sqlite3_vtab_cursor base; /* base class. MUST BE FIRST! */
231489 sqlite3_stmt *pStmt; /* Iterates through set of root pages */
231490 u8 isEof; /* After pStmt has returned SQLITE_DONE */
231491 u8 isAgg; /* Aggregate results for each table */
231492 int iDb; /* Schema used for this query */
231494 StatPage aPage[32]; /* Pages in path to current page */
231495 int iPage; /* Current entry in aPage[] */
231498 u32 iPageno; /* Value of 'pageno' column */
231499 char *zName; /* Value of 'name' column */
231500 char *zPath; /* Value of 'path' column */
231501 char *zPagetype; /* Value of 'pagetype' column */
231502 int nPage; /* Number of pages in current btree */
231503 int nCell; /* Value of 'ncell' column */
231504 int nMxPayload; /* Value of 'mx_payload' column */
231505 i64 nUnused; /* Value of 'unused' column */
231506 i64 nPayload; /* Value of 'payload' column */
231507 i64 iOffset; /* Value of 'pgOffset' column */
231508 i64 szPage; /* Value of 'pgSize' column */