Home | History | Annotate | Download | only in app_process

Lines Matching defs:zygote

53             return; // Zygote. Nothing to do here.
101 // if zygote
125 // Since they're forked from zygote, the size of their command line
126 // is the size of the zygote command line.
131 // names if the zygote command line decreases in size.
183 static const char ZYGOTE_NICE_NAME[] = "zygote";
211 // --zygote : Start in zygote mode
213 // --application : Start in application (stand alone, non zygote) mode.
216 // For non zygote starts, these arguments will be followed by
220 // For zygote starts, all remaining arguments are passed to the zygote.
239 bool zygote = false;
248 if (strcmp(arg, "--zygote") == 0) {
249 zygote = true;
268 // We're not in zygote mode, the only argument we need to pass
276 // We're in zygote mode.
294 // In zygote mode, pass all remaining arguments to the zygote
306 if (zygote) {
307 runtime.start("com.android.internal.os.ZygoteInit", args, zygote);
309 runtime.start("com.android.internal.os.RuntimeInit", args, zygote);
311 fprintf(stderr, "Error: no class name or --zygote supplied.\n");
313 LOG_ALWAYS_FATAL("app_process: no class name or --zygote supplied.");