HomeSort by relevance Sort by last modified time
    Searched defs:zygote (Results 1 - 4 of 4) sorted by null

  /frameworks/base/tools/preload/
PrintHtmlDiff.java 41 // Classes loaded implicitly by the zygote.
42 Set<LoadedClass> zygote = new HashSet<LoadedClass>(); local
44 if (proc.name.equals("zygote")) {
46 zygote.add(op.loadedClass);
56 if (loadedClass.preloaded && !zygote.contains(loadedClass)) {
  /frameworks/base/cmds/app_process/
app_main.cpp 56 return; // Zygote. Nothing to do here.
104 // if zygote
156 bool zygote = false; local
166 } else if (strcmp(arg, "--zygote") == 0) {
167 zygote = true;
168 niceName = "zygote";
188 if (zygote) {
199 fprintf(stderr, "Error: no class name or --zygote supplied.\n");
201 LOG_ALWAYS_FATAL("app_process: no class name or --zygote supplied.");
  /external/chromium/chrome/browser/
memory_details_linux.cc 173 const pid_t root, const pid_t zygote,
180 bool zygote_found = zygote ? false : true;
185 // Handle the zygote separately. With the SUID sandbox and a separate
186 // pid namespace, the zygote's parent process is not the browser.
187 if (!zygote_found && zygote == i->pid) {
239 const pid_t zygote = ZygoteHost::GetInstance()->pid(); local
240 GetAllChildren(processes, getpid(), zygote, &current_browser_processes);
  /dalvik/vm/
Globals.h 201 * Classes with a low classSerialNumber are probably in the zygote, and
573 /* set when we create a second heap inside the zygote */
639 * Zygote (partially-started process) support
641 bool zygote; member in struct:DvmGlobals
715 * crashes the Zygote process will be killed and restarted.

Completed in 912 milliseconds