public static class Debug.MemoryInfo
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.os.Debug.MemoryInfo |
This class is used to retrieved various statistics about the memory mappings for this process. The returned info is broken down by dalvik, native, and other. All results are in kB.
Inherited constants |
---|
![]() android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<Debug.MemoryInfo> |
CREATOR
|
public int |
dalvikPrivateDirty The private dirty pages used by dalvik heap. |
public int |
dalvikPss The proportional set size for dalvik heap. |
public int |
dalvikSharedDirty The shared dirty pages used by dalvik heap. |
public int |
nativePrivateDirty The private dirty pages used by the native heap. |
public int |
nativePss The proportional set size for the native heap. |
public int |
nativeSharedDirty The shared dirty pages used by the native heap. |
public int |
otherPrivateDirty The private dirty pages used by everything else. |
public int |
otherPss The proportional set size for everything else. |
public int |
otherSharedDirty The shared dirty pages used by everything else. |
Public constructors |
|
---|---|
Debug.MemoryInfo() |
Public methods |
|
---|---|
int |
describeContents() Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
String |
getMemoryStat(String statName) Returns the value of a particular memory statistic or |
Map<String, String> |
getMemoryStats() Returns a map of the names/values of the memory statistics that |
int |
getTotalPrivateClean() Return total shared clean memory usage in kB. |
int |
getTotalPrivateDirty() Return total private dirty memory usage in kB. |
int |
getTotalPss() Return total PSS memory usage in kB. |
int |
getTotalSharedClean() Return total shared clean memory usage in kB. |
int |
getTotalSharedDirty() Return total shared dirty memory usage in kB. |
int |
getTotalSwappablePss() Return total PSS memory usage in kB mapping a file of one of the following extension: .so, .jar, .apk, .ttf, .dex, .odex, .oat, .art . |
void |
readFromParcel(Parcel source) |
void |
writeToParcel(Parcel dest, int flags) Flatten this object in to a Parcel. |
Inherited methods |
|
---|---|
![]() java.lang.Object
|
|
![]() android.os.Parcelable
|
int dalvikPrivateDirty
The private dirty pages used by dalvik heap.
int dalvikPss
The proportional set size for dalvik heap. (Doesn't include other Dalvik overhead.)
int dalvikSharedDirty
The shared dirty pages used by dalvik heap.
int nativePrivateDirty
The private dirty pages used by the native heap.
int nativeSharedDirty
The shared dirty pages used by the native heap.
int otherPrivateDirty
The private dirty pages used by everything else.
int otherSharedDirty
The shared dirty pages used by everything else.
int describeContents ()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(Parcel, int)
, the return value of this method must include the CONTENTS_FILE_DESCRIPTOR
bit.
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
String getMemoryStat (String statName)
Returns the value of a particular memory statistic or null
if no such memory statistic exists.
The following table lists the memory statistics that are supported. Note that memory statistics may be added or removed in a future API level.
Memory statistic name | Meaning | Example | Supported (API Levels) |
---|---|---|---|
summary.java-heap | The private Java Heap usage in kB. This corresponds to the Java Heap field in the App Summary section output by dumpsys meminfo. | 1442 |
23 |
summary.native-heap | The private Native Heap usage in kB. This corresponds to the Native Heap field in the App Summary section output by dumpsys meminfo. | 1442 |
23 |
summary.code | The memory usage for static code and resources in kB. This corresponds to the Code field in the App Summary section output by dumpsys meminfo. | 1442 |
23 |
summary.stack | The stack usage in kB. This corresponds to the Stack field in the App Summary section output by dumpsys meminfo. | 1442 |
23 |
summary.graphics | The graphics usage in kB. This corresponds to the Graphics field in the App Summary section output by dumpsys meminfo. | 1442 |
23 |
summary.private-other | Other private memory usage in kB. This corresponds to the Private Other field output in the App Summary section by dumpsys meminfo. | 1442 |
23 |
summary.system | Shared and system memory usage in kB. This corresponds to the System field output in the App Summary section by dumpsys meminfo. | 1442 |
23 |
summary.total-pss | Total PPS memory usage in kB. | 1442 |
23 |
summary.total-swap | Total swap usage in kB. | 1442 |
23 |
Parameters | |
---|---|
statName |
String
|
Returns | |
---|---|
String |
Map<String, String> getMemoryStats ()
Returns a map of the names/values of the memory statistics that getMemoryStat(String)
supports.
Returns | |
---|---|
Map<String, String> |
a map of the names/values of the supported memory statistics. |
int getTotalPrivateClean ()
Return total shared clean memory usage in kB.
Returns | |
---|---|
int |
int getTotalPrivateDirty ()
Return total private dirty memory usage in kB.
Returns | |
---|---|
int |
int getTotalPss ()
Return total PSS memory usage in kB.
Returns | |
---|---|
int |
int getTotalSharedClean ()
Return total shared clean memory usage in kB.
Returns | |
---|---|
int |
int getTotalSharedDirty ()
Return total shared dirty memory usage in kB.
Returns | |
---|---|
int |
int getTotalSwappablePss ()
Return total PSS memory usage in kB mapping a file of one of the following extension: .so, .jar, .apk, .ttf, .dex, .odex, .oat, .art .
Returns | |
---|---|
int |
void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel : The Parcel in which the object should be written. |
flags |
int : Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . |