Home | History | Annotate | Download | only in jdwp

Lines Matching full:threadid

110   ModBasket() : pLoc(NULL), threadId(0), classId(0), excepClassId(0),
115 ObjectId threadId; /* ThreadOnly */
163 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
222 Dbg::UnconfigureStep(pMod->step.threadId);
392 if (pMod->threadOnly.threadId != basket->threadId) {
430 if (pMod->step.threadId != basket->threadId) {
548 ObjectId threadId) {
556 SetWaitForEventThread(threadId);
580 * Call this with a threadId of zero if you just want to wait for the
586 void JdwpState::SetWaitForEventThread(ObjectId threadId) {
598 VLOG(jdwp) << StringPrintf("event in progress (%#llx), %#llx sleeping", event_thread_id_, threadId);
603 if (waited || threadId != 0) {
604 VLOG(jdwp) << StringPrintf("event token grabbed (%#llx)", threadId);
606 if (threadId != 0) {
607 event_thread_id_ = threadId;
612 * Clear the threadId and signal anybody waiting.
672 ObjectId threadId = Dbg::GetThreadSelfId();
692 expandBufAdd8BE(pReq, threadId);
696 SendRequestAndPossiblySuspend(pReq, suspend_policy, threadId);
727 basket.threadId = Dbg::GetThreadSelfId();
736 if (basket.threadId == debug_thread_id_) {
781 << StringPrintf(" thread=%#llx dex_pc=%#llx)", basket.threadId, pLoc->dex_pc);
793 expandBufAdd8BE(pReq, basket.threadId);
801 SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId);
811 bool JdwpState::PostThreadChange(ObjectId threadId, bool start) {
812 CHECK_EQ(threadId, Dbg::GetThreadSelfId());
823 basket.threadId = threadId;
841 << StringPrintf("thread=%#llx", basket.threadId) << ")";
853 expandBufAdd8BE(pReq, basket.threadId);
860 SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId);
901 basket.threadId = Dbg::GetThreadSelfId();
923 << StringPrintf(" thread=%#llx", basket.threadId)
943 expandBufAdd8BE(pReq, basket.threadId);
955 SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId);
971 basket.threadId = Dbg::GetThreadSelfId();
989 << StringPrintf("thread=%#llx", basket.threadId) << ") " << signature;
994 if (basket.threadId == debug_thread_id_) {
997 * should set threadId to null and if any threads were supposed
1001 basket.threadId = 0;
1014 expandBufAdd8BE(pReq, basket.threadId);
1025 SendRequestAndPossiblySuspend(pReq, suspend_policy, basket.threadId);