public static class SQLiteDebug.PagerStats extends Object
Modifier and Type | Field and Description |
---|---|
ArrayList<SQLiteDebug.DbStats> |
dbStats
a list of
SQLiteDebug.DbStats - one for each main database opened by the applications
running on the android device |
int |
largestMemAlloc
records the largest memory allocation request handed to sqlite3.
|
int |
memoryUsed
the current amount of memory checked out by sqlite using sqlite3_malloc().
|
int |
pageCacheOverflow
the number of bytes of page cache allocation which could not be sattisfied by the
SQLITE_CONFIG_PAGECACHE buffer and where forced to overflow to sqlite3_malloc().
|
Constructor and Description |
---|
PagerStats() |
public int memoryUsed
public int pageCacheOverflow
public int largestMemAlloc
public ArrayList<SQLiteDebug.DbStats> dbStats
SQLiteDebug.DbStats
- one for each main database opened by the applications
running on the android device