Searched refs:Zygote (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DWrapperInit.java44 * wrapper process instead of by forking Zygote.
61 // Tell the Zygote what our actual PID is (since it only knows about the
71 Slog.d(TAG, "Could not write pid of wrapped process to Zygote pipe.", ex);
75 // Mimic Zygote preloading.
108 Zygote.appendQuotedShellArgs(command, args);
109 Zygote.execShell(command.toString());
126 Zygote.appendQuotedShellArgs(command, args);
127 Zygote.execShell(command.toString());
H A DZygote.java27 public final class Zygote { class
28 private static final String TAG = "Zygote";
56 private Zygote() {} method in class:Zygote
92 checkTime(startTime, "Zygote.preFork");
96 checkTime(startTime, "Zygote.nativeForkAndSpecialize");
98 checkTime(startTime, "Zygote.postForkCommon");
156 checkTime(startTime, "Zygote.callPostForkChildHooks");
H A DZygoteConnection.java47 private static final String TAG = "Zygote";
55 * the request and the completed request. The select-loop mode Zygote
218 * In order to avoid leaking descriptors to the Zygote child,
219 * the native code must close the two Zygote socket descriptors
220 * in the child process before it switches from Zygote-root to
246 pid = Zygote.forkAndSpecialize(parsedArgs.uid, parsedArgs.gid, parsedArgs.gids,
259 "Zygote security policy prevents request: ", ex);
361 int mountExternal = Zygote.MOUNT_EXTERNAL_NONE;
423 * Parses the commandline arguments intended for the Zygote spawner
465 debugFlags |= Zygote
[all...]
H A DZygoteInit.java71 private static final String TAG = "Zygote";
96 * The number of times that the main Zygote loop
210 Log.e(TAG, "Zygote: error closing sockets", ex);
212 Log.e(TAG, "Zygote: error closing descriptor", ex);
280 * Performs Zygote process initialization. Loads and initializes
484 /* runFinalizationSync() lets finalizers be called in Zygote,
611 pid = Zygote.forkSystemServer(
686 // Zygote.
700 Log.e(TAG, "Zygote died with exception", ex);
/frameworks/base/core/java/android/os/
H A DProcess.java23 import com.android.internal.os.Zygote;
411 Log.i("Zygote", "Process: zygote socket opened, supported ABIS: " + abiListString);
496 "Starting VM process through Zygote failed");
498 "Starting VM process through Zygote failed", ex);
622 if ((debugFlags & Zygote.DEBUG_ENABLE_JNI_LOGGING) != 0) {
625 if ((debugFlags & Zygote.DEBUG_ENABLE_SAFEMODE) != 0) {
628 if ((debugFlags & Zygote.DEBUG_ENABLE_DEBUGGER) != 0) {
631 if ((debugFlags & Zygote.DEBUG_ENABLE_CHECKJNI) != 0) {
634 if ((debugFlags & Zygote.DEBUG_ENABLE_ASSERT) != 0) {
637 if (mountExternal == Zygote
[all...]
/frameworks/base/include/android_runtime/
H A DAndroidRuntime.h41 Zygote, enumerator in enum:android::AndroidRuntime::StartMode
91 * This gets called after the JavaVM has initialized after a Zygote
/frameworks/base/services/java/com/android/server/
H A DSystemServer.java57 import com.android.internal.os.Zygote;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java71 import com.android.internal.os.Zygote;
2924 int mountExternal = Zygote.MOUNT_EXTERNAL_NONE;
2937 mountExternal = Zygote.MOUNT_EXTERNAL_MULTIUSER_ALL;
2939 mountExternal = Zygote.MOUNT_EXTERNAL_MULTIUSER;
2973 debugFlags |= Zygote.DEBUG_ENABLE_DEBUGGER;
2976 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI;
2982 debugFlags |= Zygote.DEBUG_ENABLE_SAFEMODE;
2985 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI;
2988 debugFlags |= Zygote.DEBUG_ENABLE_JNI_LOGGING;
2991 debugFlags |= Zygote
[all...]

Completed in 409 milliseconds