Lines Matching refs:threadId
215 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth); in RegisterEvent()
330 Dbg::UnconfigureStep(pMod->step.threadId); in UnregisterEvent()
506 if (!Dbg::MatchThread(pMod->threadOnly.threadId, basket.thread)) { in ModsMatch()
546 if (!Dbg::MatchThread(pMod->step.threadId, basket.thread)) { in ModsMatch()
660 ObjectId threadId) { in SendRequestAndPossiblySuspend() argument
664 CHECK_EQ(threadId, Dbg::GetThreadSelfId()) << "Only the current thread can suspend itself"; in SendRequestAndPossiblySuspend()
668 AcquireJdwpTokenForEvent(threadId); in SendRequestAndPossiblySuspend()
674 SuspendByPolicy(suspend_policy, threadId); in SendRequestAndPossiblySuspend()
700 void JdwpState::AcquireJdwpTokenForEvent(ObjectId threadId) { in AcquireJdwpTokenForEvent() argument
701 SetWaitForJdwpToken(threadId); in AcquireJdwpTokenForEvent()
715 void JdwpState::SetWaitForJdwpToken(ObjectId threadId) { in SetWaitForJdwpToken() argument
718 CHECK_NE(threadId, 0u); in SetWaitForJdwpToken()
725 if (jdwp_token_owner_thread_id_ == threadId) { in SetWaitForJdwpToken()
728 CHECK_EQ(threadId, debug_thread_id_) << "Non-debugger thread is already holding event token"; in SetWaitForJdwpToken()
737 jdwp_token_owner_thread_id_, threadId); in SetWaitForJdwpToken()
742 if (waited || threadId != debug_thread_id_) { in SetWaitForJdwpToken()
743 VLOG(jdwp) << StringPrintf("event token grabbed (%#" PRIx64 ")", threadId); in SetWaitForJdwpToken()
745 jdwp_token_owner_thread_id_ = threadId; in SetWaitForJdwpToken()
808 ObjectId threadId = Dbg::GetThreadSelfId(); in PostVMStart() local
818 expandBufAddObjectId(pReq, threadId); in PostVMStart()
823 SendRequestAndPossiblySuspend(pReq, suspend_policy, threadId); in PostVMStart()