Home
last modified time | relevance | path

Searched refs:IsDebuggerActive (Results 1 – 11 of 11) sorted by relevance

/art/runtime/
Ddebugger.h235 static bool IsDebuggerActive() { in IsDebuggerActive() function
544 if (!IsDebuggerActive()) { in IsForcedInterpreterNeededForCalling()
555 if (!IsDebuggerActive()) { in IsForcedInterpreterNeededForResolution()
566 if (!IsDebuggerActive()) { in IsForcedInstrumentationNeededForResolution()
577 if (!IsDebuggerActive() && !thread->HasDebuggerShadowFrames()) { in IsForcedInterpreterNeededForUpcall()
590 if (!IsDebuggerActive() && !thread->HasDebuggerShadowFrames()) { in IsForcedInterpreterNeededForException()
Ddebugger.cc600 if (IsDebuggerActive()) { in GoActive()
661 if (IsDebuggerActive()) { in Disconnected()
2888 if (!IsDebuggerActive()) { in PostLocationEvent()
2922 if (!IsDebuggerActive() || m->IsNative()) { in PostFieldAccessEvent()
2937 if (!IsDebuggerActive() || m->IsNative()) { in PostFieldModificationEvent()
3034 if (!IsDebuggerActive()) { in PostException()
3053 if (!IsDebuggerActive()) { in PostClassPrepare()
3062 if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { in UpdateDebugger()
4134 if (!IsDebuggerActive()) { in ExecuteMethodWithoutPendingException()
4250 if (IsDebuggerActive()) { in FinishInvokeMethod()
[all …]
Dinstrumentation.cc136 return Dbg::IsDebuggerActive() && in NeedDebugVersionFor()
Dthread.cc3595 CHECK(Dbg::IsDebuggerActive()); in ActivateSingleStepControl()
3602 CHECK(Dbg::IsDebuggerActive()); in DeactivateSingleStepControl()
3610 CHECK(Dbg::IsDebuggerActive()); in SetDebugInvokeReq()
Dthread_list.cc1161 const bool skip_thread_suspension = (pReq != nullptr && !Dbg::IsDebuggerActive()); in SuspendSelfForDebugger()
/art/runtime/jit/
Djit.cc277 if (Dbg::IsDebuggerActive() && Dbg::MethodHasAnyBreakpoints(method)) { in CompileMethod()
497 if (Dbg::IsDebuggerActive()) { in MaybeDoOnStackReplacement()
/art/runtime/jdwp/
Djdwp_main.cc614 if (!Dbg::IsDebuggerActive()) { in LastDebuggerActivity()
/art/runtime/native/
Ddalvik_system_VMDebug.cc157 return Dbg::IsDebuggerActive(); in VMDebug_isDebuggerConnected()
Ddalvik_system_VMRuntime.cc161 return Dbg::IsDebuggerActive(); in VMRuntime_isDebuggerActive()
/art/runtime/openjdkjvmti/
Dti_redefine.cc1212 DCHECK(art::Dbg::IsDebuggerActive()); in UnregisterBreakpoints()
1220 if (LIKELY(!art::Dbg::IsDebuggerActive())) { in UnregisterAllBreakpoints()
/art/runtime/interpreter/mterp/
Dmterp.cc150 return instrumentation->NonJitProfilingActive() || Dbg::IsDebuggerActive(); in MterpShouldSwitchInterpreters()