Home
last modified time | relevance | path

Searched refs:GetRuntimeCallbacks (Results 1 – 25 of 26) sorted by relevance

12

/art/runtime/
Druntime_callbacks_test.cc105 Runtime::Current()->GetRuntimeCallbacks()->AddThreadLifecycleCallback(&cb_); in AddListener()
108 Runtime::Current()->GetRuntimeCallbacks()->RemoveThreadLifecycleCallback(&cb_); in RemoveListener()
224 Runtime::Current()->GetRuntimeCallbacks()->AddClassLoadCallback(&cb_); in AddListener()
227 Runtime::Current()->GetRuntimeCallbacks()->RemoveClassLoadCallback(&cb_); in RemoveListener()
324 Runtime::Current()->GetRuntimeCallbacks()->AddRuntimeSigQuitCallback(&cb_); in AddListener()
327 Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimeSigQuitCallback(&cb_); in RemoveListener()
367 Runtime::Current()->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&cb_); in AddListener()
370 Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimePhaseCallback(&cb_); in RemoveListener()
439 Runtime::Current()->GetRuntimeCallbacks()->AddMonitorCallback(&cb_); in AddListener()
442 Runtime::Current()->GetRuntimeCallbacks()->RemoveMonitorCallback(&cb_); in RemoveListener()
Ddebugger.cc310 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); in DdmSendThreadNotification()
443 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("HPIF"), in DdmSendHeapInfo()
531 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(type_, out); in Flush()
714 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); in DdmSendHeapSegments()
Dmonitor.cc449 Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocked(this); in Lock()
510 Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocking(this); in Lock()
639 Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocked(this); in Lock()
937 Runtime::Current()->GetRuntimeCallbacks()->MonitorWaitFinished(this, timed_out); in Wait()
1294 Runtime::Current()->GetRuntimeCallbacks()->ObjectWaitStart(h_obj, ms); in Wait()
Druntime.cc438 GetRuntimeCallbacks()->StopDebugger(); in ~Runtime()
1086 GetRuntimeCallbacks()->StartDebugger(); in InitNonZygoteOrPostFork()
2827 RuntimeCallbacks* Runtime::GetRuntimeCallbacks() { in GetRuntimeCallbacks() function in art::Runtime
Druntime.h871 RuntimeCallbacks* GetRuntimeCallbacks();
Dart_method.cc399 Runtime::Current()->GetRuntimeCallbacks()->RegisterNativeMethod(this, in RegisterNative()
Dtrace.cc685 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("MPSE"), in FinishTracing()
Dinstrumentation.cc228 return (runtime->GetRuntimeCallbacks()->MethodNeedsDebugVersion(method) || in NeedDebugVersionFor()
/art/openjdkjvmti/
Dti_dump.cc65 art::Runtime::Current()->GetRuntimeCallbacks()->AddRuntimeSigQuitCallback(&gDumpCallback); in Register()
72 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimeSigQuitCallback(&gDumpCallback); in Unregister()
Dti_phase.cc145 art::Runtime::Current()->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&gPhaseCallback); in Register()
152 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimePhaseCallback(&gPhaseCallback); in Unregister()
Dti_breakpoint.cc107 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Register()
115 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Unregister()
Dti_field.cc116 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Register()
124 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Unregister()
Dti_search.cc212 runtime->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&gSearchCallback); in Register()
220 runtime->GetRuntimeCallbacks()->RemoveRuntimePhaseCallback(&gSearchCallback); in Unregister()
Ddeopt_manager.cc105 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Setup()
113 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Shutdown()
Devents.cc287 art::Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(listener); in SetupDdmTracking()
289 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveDdmCallback(listener); in SetupDdmTracking()
534 art::Runtime::Current()->GetRuntimeCallbacks()->AddMonitorCallback(monitor_listener); in SetupMonitorListener()
535 art::Runtime::Current()->GetRuntimeCallbacks()->AddParkCallback(park_listener); in SetupMonitorListener()
537 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveMonitorCallback(monitor_listener); in SetupMonitorListener()
538 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveParkCallback(park_listener); in SetupMonitorListener()
Dti_class.cc538 art::Runtime::Current()->GetRuntimeCallbacks()->AddClassLoadCallback(&gClassCallback); in Register()
546 runtime->GetRuntimeCallbacks()->RemoveClassLoadCallback(&gClassCallback); in Unregister()
Dti_thread.cc163 runtime->GetRuntimeCallbacks()->AddThreadLifecycleCallback(&gThreadCallback); in Register()
210 runtime->GetRuntimeCallbacks()->RemoveThreadLifecycleCallback(&gThreadCallback); in Unregister()
Dti_method.cc119 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Register()
127 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Unregister()
/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmServer.cc38 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(static_cast<uint32_t>(type), chunk); in DdmServer_nativeSendChunk()
Ddalvik_system_VMDebug.cc182 return Runtime::Current()->GetRuntimeCallbacks()->IsDebuggerConfigured(); in VMDebug_isDebuggingEnabled()
/art/adbconnection/
Dadbconnection.cc171 art::Runtime::Current()->GetRuntimeCallbacks()->AddDebuggerControlCallback(&controller_); in AdbConnectionState()
179 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveDebuggerControlCallback(&controller_); in ~AdbConnectionState()
249 art::Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(&ddm_callback_); in StartDebuggerThreads()
/art/tools/tracefast-plugin/
Dtracefast.cc164 runtime->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&gPhaseCallback); in ArtPlugin_Initialize()
/art/test/common/
Druntime_state.cc238 } else if (!Runtime::Current()->GetRuntimeCallbacks()->IsMethodSafeToJit(method)) { in ForceJitCompiled()
/art/runtime/jit/
Djit.cc296 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); in CompileMethod()
581 if (Runtime::Current()->GetRuntimeCallbacks()->IsMethodBeingInspected(method)) { in MaybeDoOnStackReplacement()
/art/runtime/hprof/
Dhprof.cc823 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk( in DumpToDdmsDirect()

12