Home | History | Annotate | Download | only in jdwp

Lines Matching defs:threadId

212         JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
290 Dbg::UnconfigureStep(pMod->step.threadId);
466 if (!Dbg::MatchThread(pMod->threadOnly.threadId, basket.thread)) {
506 if (!Dbg::MatchThread(pMod->step.threadId, basket.thread)) {
620 ObjectId threadId) {
628 AcquireJdwpTokenForEvent(threadId);
660 void JdwpState::AcquireJdwpTokenForEvent(ObjectId threadId) {
662 CHECK_NE(debug_thread_id_, threadId) << "Not expected debug thread";
663 SetWaitForJdwpToken(threadId);
678 void JdwpState::SetWaitForJdwpToken(ObjectId threadId) {
681 CHECK_NE(threadId, 0u);
688 CHECK_NE(jdwp_token_owner_thread_id_, threadId) << "Thread is already holding event thread lock";
696 jdwp_token_owner_thread_id_, threadId);
701 if (waited || threadId != debug_thread_id_) {
702 VLOG(jdwp) << StringPrintf("event token grabbed (%#" PRIx64 ")", threadId);
704 jdwp_token_owner_thread_id_ = threadId;
708 * Clear the threadId and signal anybody waiting.
766 ObjectId threadId = Dbg::GetThreadSelfId();
776 expandBufAddObjectId(pReq, threadId);
781 SendRequestAndPossiblySuspend(pReq, suspend_policy, threadId);