Home
last modified time | relevance | path

Searched refs:GetDebugThread (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dthread_list.cc619 Thread* debug_thread = Dbg::GetDebugThread(); in SuspendAllForDebugger()
664 Thread* debug_thread = Dbg::GetDebugThread(); in SuspendSelfForDebugger()
722 Thread* debug_thread = Dbg::GetDebugThread(); in ResumeAllForDebugger()
Ddebugger.h221 static Thread* GetDebugThread();
Ddebugger.cc713 Thread* Dbg::GetDebugThread() { in GetDebugThread() function in art::Dbg
714 return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL; in GetDebugThread()
2250 if (t == Dbg::GetDebugThread()) { in GetThreads()
/art/runtime/jdwp/
Djdwp_main.cc543 Thread* JdwpState::GetDebugThread() { in GetDebugThread() function in art::JDWP::JdwpState
Djdwp.h140 Thread* GetDebugThread();
Djdwp_handler.cc1722 CHECK_EQ(self, GetDebugThread()) << "Requests are only processed by debug thread"; in StartProcessingRequest()
1734 CHECK_EQ(self, GetDebugThread()) << "Requests are only processed by debug thread"; in EndProcessingRequest()
1746 CHECK_NE(self, GetDebugThread()) << "Events should not be posted by debug thread"; in WaitForProcessingRequest()
Djdwp_event.cc853 if (basket.thread == GetDebugThread()) { in PostLocationEvent()