All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dalvik.system.Zygote Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.1.1.4
Show newest version
package dalvik.system;
public class Zygote
{
Zygote() { throw new RuntimeException("Stub!"); }
public static native  int fork();
public static native  int forkAndSpecialize(int uid, int gid, int[] gids, int debugFlags, int[][] rlimits);
public static  int forkAndSpecialize(int uid, int gid, int[] gids, boolean enableDebugger, int[][] rlimits) { throw new RuntimeException("Stub!"); }
public static native  int forkSystemServer(int uid, int gid, int[] gids, int debugFlags, int[][] rlimits);
public static  int forkSystemServer(int uid, int gid, int[] gids, boolean enableDebugger, int[][] rlimits) { throw new RuntimeException("Stub!"); }
public static final int DEBUG_ENABLE_DEBUGGER = 1;
public static final int DEBUG_ENABLE_CHECKJNI = 2;
public static final int DEBUG_ENABLE_ASSERT = 4;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy