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

  /dalvik/tools/
gclog.py 92 """Parse event2 (zygote heap stats)"""
95 # Zygote heap stats (except for the soft limit, which belongs to the
146 zygote = parseZygoteStats(values[2])
150 (timestamp, global_info[0], pid, zygote[0]/1024, external[2]/1024, external[3]/1024)
160 (zygote[0], zygote[1], zygote[2], zygote[3], zygote[4])
  /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)) {
  /dalvik/dvz/
dvz.c 17 #include <cutils/zygote.h>
62 // The zygote was unable to move this process into our pgid
87 "\t[additional zygote args] fully.qualified.java.ClassName [args]\n", argv0);
88 fprintf(stderr, "\nRequests a new Dalvik VM instance to be spawned from the zygote\n"
105 fprintf(stderr, "%s error: no zygote process found\n", argv[0]);
  /dalvik/vm/alloc/
HeapInternal.h 151 if (!gDvm.zygote) { \
HeapWorker.c 493 if (gDvm.zygote) {
496 /* When in zygote mode, there is no heap worker.
503 /* Outside of zygote mode, we can just ask the
HeapSource.c 186 /* True if zygote mode was active when the HeapSource was created.
541 hs->sawZygote = gDvm.zygote;
579 * This is called while in zygote mode, right before we fork() for the
580 * first time. We create a heap for all future zygote process allocations,
581 * in an attempt to avoid touching pages in the zygote heap. (This would
592 assert(gDvm.zygote);
595 /* Create a new heap for post-fork zygote allocations. We only
598 LOGV("Splitting out new zygote heap\n");
1068 * it was allocated as part of zygote.
1074 * running in zygote mode
    [all...]
  /dalvik/vm/native/
dalvik_system_Zygote.c 18 * dalvik.system.Zygote
33 #define ZYGOTE_LOG_TAG "Zygote"
35 /* must match values in dalvik.system.Zygote */
44 * This signal handler is for zygote mode, since the zygote
56 of LOG() is safe to call from a SIGCHLD handler in the zygote process.
92 * If the just-crashed process is the system_server, bring down zygote
98 "Exit zygote because system server (%d) has terminated\n",
106 "Zygote SIGCHLD error in waitpid: %s\n",strerror(errno));
111 * configure sigchld handler for the zygote proces
    [all...]
  /system/core/libcutils/
Android.mk 77 zygote.c
zygote.c 17 #define LOG_TAG "Zygote"
20 #include <cutils/zygote.h>
34 #define ZYGOTE_SOCKET "zygote"
201 * Spawns a new dalvik instance via the Zygote process. The non-zygote
205 * The arg list may start with zygote params such as --set-uid.
214 * ZYGOTE_RETRY_MILLIS for the zygote socket to be available.
  /dalvik/vm/
Globals.h 176 * Classes with a low classSerialNumber are probably in the zygote, and
487 /* set when we create a second heap inside the zygote */
578 * Zygote (partially-started process) support
580 bool zygote; member in struct:DvmGlobals
663 * crashes the Zygote process will be killed and restarted.
Init.c 518 * Turn assertions on when requested to do so by the Zygote.
528 * This must only be called from the main thread during zygote init.
678 * zygote-time activation can do its business.
843 gDvm.zygote = true;
    [all...]
Sync.c 216 if (gDvm.zygote) {
    [all...]
Thread.c     [all...]
Jni.c     [all...]
  /frameworks/base/cmds/runtime/
main_runtime.cpp 16 #include <cutils/zygote.h>
479 /* If we are in multiprocess mode, have zygote spawn the system
501 false /* spontaneously fork system server from zygote */);
505 //printf("+++ post-zygote\n");
  /system/extras/tests/fstest/
perm_checker.conf 108 /dev/socket/zygote 666 666 root root root root
  /dalvik/vm/analysis/
RegisterMap.c 999 * (unless we're in the zygote, where single-threaded access is guaranteed).
1012 if (!gDvm.zygote && dvmTryLockMutex(&gDvm.gcHeapLock) == 0) {
    [all...]

Completed in 660 milliseconds