public static class

Debug.MemoryInfo

extends Object
java.lang.Object
   ↳ android.os.Debug.MemoryInfo

Class Overview

This class is used to retrieved various statistics about the memory mappings for this process. The returns info broken down by dalvik, native, and other. All results are in kB.

Summary

Fields
public int dalvikPrivateDirty The private dirty pages used by dalvik.
public int dalvikPss The proportional set size for dalvik.
public int dalvikSharedDirty The shared dirty pages used by dalvik.
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()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public int dalvikPrivateDirty

The private dirty pages used by dalvik.

public int dalvikPss

The proportional set size for dalvik.

public int dalvikSharedDirty

The shared dirty pages used by dalvik.

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

public Debug.MemoryInfo ()