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

/frameworks/base/core/java/com/android/internal/os/
H A DWrapperInit.java30 import dalvik.system.Zygote;
47 * wrapper process instead of by forking Zygote.
64 // Tell the Zygote what our actual PID is (since it only knows about the
74 Slog.d(TAG, "Could not write pid of wrapped process to Zygote pipe.", ex);
78 // Mimic Zygote preloading.
111 Zygote.appendQuotedShellArgs(command, args);
112 Zygote.execShell(command.toString());
129 Zygote.appendQuotedShellArgs(command, args);
130 Zygote.execShell(command.toString());
H A DZygoteConnection.java27 import dalvik.system.Zygote;
48 private static final String TAG = "Zygote";
56 * the request and the completed request. The select-loop mode Zygote
83 * in the Zygote and placed here in the spawned instance so that it will
85 * in the original Zygote process, and in all spawned processes where
235 pid = Zygote.forkAndSpecialize(parsedArgs.uid, parsedArgs.gid, parsedArgs.gids,
246 "Zygote security policy prevents request: ", ex);
343 int mountExternal = Zygote.MOUNT_EXTERNAL_NONE;
389 * Parses the commandline arguments intended for the Zygote spawner
431 debugFlags |= Zygote
[all...]
H A DZygoteInit.java34 import dalvik.system.Zygote;
63 private static final String TAG = "Zygote";
85 * The number of times that the main Zygote loop
201 Log.e(TAG, "Zygote: error closing sockets", ex);
239 * Performs Zygote process initialization. Loads and initializes
436 /* runFinalizationSync() lets finalizers be called in Zygote,
502 pid = Zygote.forkSystemServer(
539 // If requested, start system server directly from Zygote
562 Log.e(TAG, "Zygote died with exception", ex);
582 pid = Zygote
[all...]
/frameworks/base/core/java/android/os/
H A DProcess.java22 import dalvik.system.Zygote;
402 "Starting VM process through Zygote failed");
404 "Starting VM process through Zygote failed", ex);
412 * Tries to open socket to Zygote process if not already open. If
441 Log.i("Zygote", "Zygote not up yet, sleeping...");
463 Log.i("Zygote", "Process: zygote socket opened");
584 if ((debugFlags & Zygote.DEBUG_ENABLE_JNI_LOGGING) != 0) {
587 if ((debugFlags & Zygote.DEBUG_ENABLE_SAFEMODE) != 0) {
590 if ((debugFlags & 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.java69 import dalvik.system.Zygote;
758 // Post the safe mode state in the Zygote class
759 Zygote.systemInSafeMode = true;
1028 * This method is called from Zygote to initialize the system. This will cause the native
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java33 import dalvik.system.Zygote;
2069 int mountExternal = Zygote.MOUNT_EXTERNAL_NONE;
2080 mountExternal = Zygote.MOUNT_EXTERNAL_MULTIUSER_ALL;
2082 mountExternal = Zygote.MOUNT_EXTERNAL_MULTIUSER;
2114 debugFlags |= Zygote.DEBUG_ENABLE_DEBUGGER;
2117 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI;
2122 Zygote.systemInSafeMode == true) {
2123 debugFlags |= Zygote.DEBUG_ENABLE_SAFEMODE;
2126 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI;
2129 debugFlags |= Zygote
[all...]

Completed in 600 milliseconds