dalvik.system.VMRuntime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package dalvik.system;
public final class VMRuntime
{
VMRuntime() { throw new RuntimeException("Stub!"); }
public static dalvik.system.VMRuntime getRuntime() { throw new RuntimeException("Stub!"); }
public native float getTargetHeapUtilization();
public float setTargetHeapUtilization(float newTarget) { throw new RuntimeException("Stub!"); }
public long getMinimumHeapSize() { throw new RuntimeException("Stub!"); }
public synchronized long setMinimumHeapSize(long size) { throw new RuntimeException("Stub!"); }
public native void gcSoftReferences();
public native void runFinalizationSync();
public native long getExternalBytesAllocated();
}