/aosp12/art/runtime/ |
H A D | runtime_callbacks_test.cc | 105 Runtime::Current()->GetRuntimeCallbacks()->AddThreadLifecycleCallback(&cb_); in AddListener() 108 Runtime::Current()->GetRuntimeCallbacks()->RemoveThreadLifecycleCallback(&cb_); in RemoveListener() 236 Runtime::Current()->GetRuntimeCallbacks()->AddClassLoadCallback(&cb_); in AddListener() 239 Runtime::Current()->GetRuntimeCallbacks()->RemoveClassLoadCallback(&cb_); in RemoveListener() 336 Runtime::Current()->GetRuntimeCallbacks()->AddRuntimeSigQuitCallback(&cb_); in AddListener() 339 Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimeSigQuitCallback(&cb_); in RemoveListener() 379 Runtime::Current()->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&cb_); in AddListener() 382 Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimePhaseCallback(&cb_); in RemoveListener() 451 Runtime::Current()->GetRuntimeCallbacks()->AddMonitorCallback(&cb_); in AddListener() 454 Runtime::Current()->GetRuntimeCallbacks()->RemoveMonitorCallback(&cb_); in RemoveListener()
|
H A D | debugger.cc | 310 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()
|
H A D | monitor.cc | 453 Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocked(this); in Lock() 514 Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocking(this); in Lock() 643 Runtime::Current()->GetRuntimeCallbacks()->MonitorContendedLocked(this); in Lock() 941 Runtime::Current()->GetRuntimeCallbacks()->MonitorWaitFinished(this, timed_out); in Wait() 1282 Runtime::Current()->GetRuntimeCallbacks()->ObjectWaitStart(h_obj, ms); in Wait()
|
H A D | thread.cc | 312 Runtime::Current()->GetRuntimeCallbacks()->ThreadParkStart(is_absolute, time); in Park() 385 Runtime::Current()->GetRuntimeCallbacks()->ThreadParkFinished(timed_out); in Park() 632 runtime->GetRuntimeCallbacks()->ThreadStart(self); in CreateCallback() 1033 runtime->GetRuntimeCallbacks()->ThreadStart(self); in Attach() 2427 runtime->GetRuntimeCallbacks()->ThreadDeath(self); in Destroy()
|
H A D | runtime.cc | 449 GetRuntimeCallbacks()->StopDebugger(); in ~Runtime() 1174 GetRuntimeCallbacks()->StartDebugger(); in InitNonZygoteOrPostFork() 3054 RuntimeCallbacks* Runtime::GetRuntimeCallbacks() { in GetRuntimeCallbacks() function in art::Runtime
|
H A D | runtime.h | 876 RuntimeCallbacks* GetRuntimeCallbacks();
|
H A D | class_linker.cc | 470 runtime->GetRuntimeCallbacks()->RegisterNativeMethod(method, in RegisterNative() 3032 Runtime::Current()->GetRuntimeCallbacks()->BeginDefineClass(); in REQUIRES_SHARED() 3044 Runtime::Current()->GetRuntimeCallbacks()->EndDefineClass(); in Finish() 3156 Runtime::Current()->GetRuntimeCallbacks()->ClassPreDefine(descriptor, in DefineClass() 3223 Runtime::Current()->GetRuntimeCallbacks()->ClassLoad(klass); in DefineClass() 3265 Runtime::Current()->GetRuntimeCallbacks()->ClassPrepare(klass, h_new_class); in DefineClass() 4311 Runtime::Current()->GetRuntimeCallbacks()->ClassLoad(new_class); in CreateArrayClass() 4312 Runtime::Current()->GetRuntimeCallbacks()->ClassPrepare(new_class, new_class); in CreateArrayClass() 5052 Runtime::Current()->GetRuntimeCallbacks()->ClassLoad(temp_klass); in CreateProxyClass() 5081 Runtime::Current()->GetRuntimeCallbacks()->ClassPrepare(temp_klass, klass); in CreateProxyClass()
|
H A D | trace.cc | 685 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("MPSE"), in FinishTracing()
|
/aosp12/art/openjdkjvmti/ |
H A D | ti_dump.cc | 65 art::Runtime::Current()->GetRuntimeCallbacks()->AddRuntimeSigQuitCallback(&gDumpCallback); in Register() 72 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimeSigQuitCallback(&gDumpCallback); in Unregister()
|
H A D | ti_phase.cc | 145 art::Runtime::Current()->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&gPhaseCallback); in Register() 152 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveRuntimePhaseCallback(&gPhaseCallback); in Unregister()
|
H A D | ti_breakpoint.cc | 107 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Register() 115 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Unregister()
|
H A D | ti_field.cc | 116 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Register() 124 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Unregister()
|
H A D | ti_search.cc | 212 runtime->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&gSearchCallback); in Register() 220 runtime->GetRuntimeCallbacks()->RemoveRuntimePhaseCallback(&gSearchCallback); in Unregister()
|
H A D | deopt_manager.cc | 105 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Setup() 113 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Shutdown()
|
H A D | events.cc | 287 art::Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(listener); in SetupDdmTracking() 289 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveDdmCallback(listener); in SetupDdmTracking() 533 art::Runtime::Current()->GetRuntimeCallbacks()->AddMonitorCallback(monitor_listener); in SetupMonitorListener() 534 art::Runtime::Current()->GetRuntimeCallbacks()->AddParkCallback(park_listener); in SetupMonitorListener() 536 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveMonitorCallback(monitor_listener); in SetupMonitorListener() 537 art::Runtime::Current()->GetRuntimeCallbacks()->RemoveParkCallback(park_listener); in SetupMonitorListener()
|
H A D | ti_thread.cc | 163 runtime->GetRuntimeCallbacks()->AddThreadLifecycleCallback(&gThreadCallback); in Register() 210 runtime->GetRuntimeCallbacks()->RemoveThreadLifecycleCallback(&gThreadCallback); in Unregister()
|
H A D | ti_class.cc | 539 art::Runtime::Current()->GetRuntimeCallbacks()->AddClassLoadCallback(&gClassCallback); in Register() 547 runtime->GetRuntimeCallbacks()->RemoveClassLoadCallback(&gClassCallback); in Unregister()
|
H A D | ti_method.cc | 119 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Register() 127 art::RuntimeCallbacks* callbacks = art::Runtime::Current()->GetRuntimeCallbacks(); in Unregister()
|
/aosp12/art/runtime/native/ |
H A D | org_apache_harmony_dalvik_ddmc_DdmServer.cc | 38 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(static_cast<uint32_t>(type), chunk); in DdmServer_nativeSendChunk()
|
H A D | dalvik_system_VMDebug.cc | 172 return Runtime::Current()->GetRuntimeCallbacks()->IsDebuggerConfigured(); in VMDebug_isDebuggingEnabled()
|
/aosp12/art/adbconnection/ |
H A D | adbconnection.cc | 171 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()
|
/aosp12/art/tools/tracefast-plugin/ |
H A D | tracefast.cc | 164 runtime->GetRuntimeCallbacks()->AddRuntimePhaseCallback(&gPhaseCallback); in ArtPlugin_Initialize()
|
/aosp12/art/test/common/ |
H A D | runtime_state.cc | 233 if (!Runtime::Current()->GetRuntimeCallbacks()->IsMethodSafeToJit(method)) { in ForceJitCompiled()
|
/aosp12/art/runtime/jit/ |
H A D | jit.cc | 302 RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); in CompileMethod() 591 if (Runtime::Current()->GetRuntimeCallbacks()->IsMethodBeingInspected(method)) { in MaybeDoOnStackReplacement()
|
/aosp12/art/runtime/hprof/ |
H A D | hprof.cc | 823 Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk( in DumpToDdmsDirect()
|