Lines Matching refs:runtime
146 Runtime* const runtime = Runtime::Current(); in CollectNonDebuggableClasses() local
157 runtime->GetThreadList()->ForEach(DoCollectNonDebuggableCallback, &classes); in CollectNonDebuggableClasses()
188 Runtime* const runtime = Runtime::Current(); in EnableDebugFeatures() local
190 JavaVMExt* vm = runtime->GetJavaVM(); in EnableDebugFeatures()
216 runtime->AddCompilerOption("--compiler-filter=quicken"); in EnableDebugFeatures()
217 runtime->SetSafeMode(true); in EnableDebugFeatures()
225 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures()
233 runtime->AddCompilerOption("--debuggable"); in EnableDebugFeatures()
235 runtime->SetJavaDebuggable(true); in EnableDebugFeatures()
237 runtime->DeoptimizeBootImage(); in EnableDebugFeatures()
246 runtime->AddCompilerOption("--debuggable"); in EnableDebugFeatures()
248 runtime->SetNativeDebuggable(true); in EnableDebugFeatures()
254 runtime->AddCompilerOption("--generate-mini-debug-info"); in EnableDebugFeatures()
260 runtime->AddCompilerOption("--generate-debug-info"); in EnableDebugFeatures()
268 Runtime* runtime = Runtime::Current(); in ZygoteHooks_nativePreFork() local
269 CHECK(runtime->IsZygote()) << "runtime instance not started with -Xzygote"; in ZygoteHooks_nativePreFork()
271 runtime->PreZygoteFork(); in ZygoteHooks_nativePreFork()