Searched defs:runtime (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/cmds/system_server/library/
H A Dsystem_init.cpp33 * This class is used to kill this process when the runtime dies.
75 // And now start the Android runtime. We have to do this bit
76 // of nastiness because the Android runtime initialization requires
78 // All other servers should just start the Android runtime at
81 ALOGI("System server: starting Android runtime.\n");
82 AndroidRuntime* runtime = AndroidRuntime::getRuntime(); local
85 JNIEnv* env = runtime->getJNIEnv();
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp4 * Starts the interpreted runtime, then starts up the application.
143 AppRuntime runtime; local
153 int i = runtime.addVmArguments(argc, argv);
155 // Parse runtime arguments. Stop at first unrecognized option.
186 runtime.mParentDir = parentDir;
189 runtime.start("com.android.internal.os.ZygoteInit",
193 runtime.mClassName = className;
194 runtime.mArgC = argc - i;
195 runtime.mArgV = argv + i;
196 runtime
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java246 final VMRuntime runtime = VMRuntime.getRuntime();
262 float defaultUtilization = runtime.getTargetHeapUtilization();
263 runtime.setTargetHeapUtilization(0.8f);
267 runtime.runFinalizationSync();
294 runtime.runFinalizationSync();
319 runtime.setTargetHeapUtilization(defaultUtilization);
338 final VMRuntime runtime = VMRuntime.getRuntime();
343 runtime.runFinalizationSync();
352 int N = preloadDrawables(runtime, ar);
360 N = preloadColorStateLists(runtime, a
373 preloadColorStateLists(VMRuntime runtime, TypedArray ar) argument
401 preloadDrawables(VMRuntime runtime, TypedArray ar) argument
[all...]

Completed in 841 milliseconds