Lines Matching defs:StatCursor
87 typedef struct StatCursor StatCursor; typedef
118 struct StatCursor { struct
119 sqlite3_vtab_cursor base; /* base class. MUST BE FIRST! */
120 sqlite3_stmt *pStmt; /* Iterates through set of root pages */
121 u8 isEof; /* After pStmt has returned SQLITE_DONE */
122 u8 isAgg; /* Aggregate results for each table */
123 int iDb; /* Schema used for this query */
125 StatPage aPage[32]; /* Pages in path to current page */
126 int iPage; /* Current entry in aPage[] */
129 u32 iPageno; /* Value of 'pageno' column */
130 char *zName; /* Value of 'name' column */
131 char *zPath; /* Value of 'path' column */
132 char *zPagetype; /* Value of 'pagetype' column */
133 int nPage; /* Number of pages in current btree */
134 int nCell; /* Value of 'ncell' column */
135 int nMxPayload; /* Value of 'mx_payload' column */
136 i64 nUnused; /* Value of 'unused' column */
137 i64 nPayload; /* Value of 'payload' column */
138 i64 iOffset; /* Value of 'pgOffset' column */
139 i64 szPage; /* Value of 'pgSize' column */