Lines Matching refs:runtime
82 Runtime* const runtime = Runtime::Current(); in EnableDebugFeatures() local
84 JavaVMExt* vm = runtime->GetJavaVM(); in EnableDebugFeatures()
110 runtime->AddCompilerOption("--compiler-filter=interpret-only"); in EnableDebugFeatures()
111 runtime->SetSafeMode(true); in EnableDebugFeatures()
117 runtime->AddCompilerOption("--generate-debug-info"); in EnableDebugFeatures()
125 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures()
132 runtime->AddCompilerOption("--debuggable"); in EnableDebugFeatures()
133 runtime->AddCompilerOption("--generate-debug-info"); in EnableDebugFeatures()
134 runtime->SetNativeDebuggable(true); in EnableDebugFeatures()
144 Runtime* runtime = Runtime::Current(); in ZygoteHooks_nativePreFork() local
145 CHECK(runtime->IsZygote()) << "runtime instance not started with -Xzygote"; in ZygoteHooks_nativePreFork()
147 runtime->PreZygoteFork(); in ZygoteHooks_nativePreFork()