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

  /dalvik/vm/alloc/
HeapInternal.h 86 if (!gDvm.zygote) { ALOG(LOG_INFO, HEAP_LOG_TAG, __VA_ARGS__); } \
HeapSource.cpp 155 /* True if zygote mode was active when the HeapSource was created.
606 hs->sawZygote = gDvm.zygote;
656 * This is called while in zygote mode, right before we fork() for the
657 * first time. We create a heap for all future zygote process allocations,
658 * in an attempt to avoid touching pages in the zygote heap. (This would
668 assert(gDvm.zygote);
674 /* Create a new heap for post-fork zygote allocations. We only
677 ALOGV("Splitting out new zygote heap");
1060 * it was allocated as part of zygote.
1066 * running in zygote mode
    [all...]
MarkSweep.cpp 786 * Unless we are in the zygote or required to clear soft
790 if (!gDvm.zygote && !clearSoftRefs) {
  /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);
  /frameworks/base/cmds/app_process/
app_main.cpp 60 return; // Zygote. Nothing to do here.
100 // Re-enable tracing now that we're no longer in Zygote.
111 // if zygote
190 bool zygote = false; local
200 } else if (strcmp(arg, "--zygote") == 0) {
201 zygote = true;
202 niceName = "zygote";
222 if (zygote) {
233 fprintf(stderr, "Error: no class name or --zygote supplied.\n");
235 LOG_ALWAYS_FATAL("app_process: no class name or --zygote supplied.")
    [all...]
  /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/vm/native/
dalvik_system_Zygote.cpp 18 * dalvik.system.Zygote
46 #define ZYGOTE_LOG_TAG "Zygote"
48 /* must match values in dalvik.system.Zygote */
57 /* must match values in dalvik.system.Zygote */
66 * This signal handler is for zygote mode, since the zygote
78 of ALOG() is safe to call from a SIGCHLD handler in the zygote process.
114 * If the just-crashed process is the system_server, bring down zygote
120 "Exit zygote because system server (%d) has terminated",
128 "Zygote SIGCHLD error in waitpid: %s",strerror(errno))
    [all...]
  /system/core/libcutils/
Android.mk 81 zygote.c
zygote.c 17 #define LOG_TAG "Zygote"
20 #include <cutils/zygote.h>
34 #define ZYGOTE_SOCKET "zygote"
163 * Spawns a new dalvik instance via the Zygote process. The non-zygote
167 * The arg list may start with zygote params such as --set-uid.
176 * ZYGOTE_RETRY_MILLIS for the zygote socket to be available.
  /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.
Init.cpp 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.
793 * zygote-time activation can do its business.
    [all...]
Jni.cpp     [all...]
  /external/sepolicy/
access_vectors 876 class zygote
file_contexts 100 /dev/socket/zygote u:object_r:zygote_socket:s0
  /system/extras/tests/fstest/
perm_checker.conf 108 /dev/socket/zygote 666 666 root root root root
  /dalvik/vm/analysis/
RegisterMap.cpp 1001 * (unless we're in the zygote, where single-threaded access is guaranteed).
1014 if (!gDvm.zygote && dvmTryLockMutex(&gDvm.gcHeapLock) == 0) {
    [all...]

Completed in 610 milliseconds