Searched refs:zygote (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/include/android_runtime/
H A DAndroidRuntime.h67 void start(const char *classname, const Vector<String8>& options, bool zygote);
134 int startVm(JavaVM** pJavaVM, JNIEnv** pEnv, bool zygote);
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp101 // 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 start
239 bool zygote = false; local
[all...]
/frameworks/base/tools/preload/
H A DPrintHtmlDiff.java41 // Classes loaded implicitly by the zygote.
42 Set<LoadedClass> zygote = new HashSet<LoadedClass>();
44 if (proc.name.equals("zygote")) {
46 zygote.add(op.loadedClass);
56 if (loadedClass.preloaded && !zygote.contains(loadedClass)) {
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp581 int AndroidRuntime::startVm(JavaVM** pJavaVM, JNIEnv** pEnv, bool zygote) argument
726 * Enable debugging only for apps forked from zygote.
729 if (zygote) {
899 parseRuntimeOption("dalvik.vm.zygote.max-boot-retry", cachePruneBuf,
974 void AndroidRuntime::start(const char* className, const Vector<String8>& options, bool zygote) argument
1010 if (startVm(&mJavaVM, &env, zygote) != 0) {

Completed in 120 milliseconds