Lines Matching refs:thread_id
446 static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, in DecodeThread() argument
451 Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); in DecodeThread()
880 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, in GetOwnedMonitors() argument
917 Thread* thread = DecodeThread(soa, thread_id, &error); in GetOwnedMonitors()
930 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, in GetContendedMonitor() argument
935 Thread* thread = DecodeThread(soa, thread_id, &error); in GetContendedMonitor()
2061 JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { in GetThreadName() argument
2064 DecodeThread(soa, thread_id, &error); in GetThreadName()
2070 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); in GetThreadName()
2081 JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { in GetThreadGroup() argument
2084 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); in GetThreadGroup()
2090 DecodeThread(soa, thread_id, &error); in GetThreadGroup()
2278 JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatu… in GetThreadStatus() argument
2285 Thread* thread = DecodeThread(soa, thread_id, &error); in GetThreadStatus()
2302 JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { in GetThreadDebugSuspendCount() argument
2305 Thread* thread = DecodeThread(soa, thread_id, &error); in GetThreadDebugSuspendCount()
2314 JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { in Interrupt() argument
2317 Thread* thread = DecodeThread(soa, thread_id, &error); in Interrupt()
2385 JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { in GetThreadFrameCount() argument
2389 Thread* thread = DecodeThread(soa, thread_id, &error); in GetThreadFrameCount()
2400 JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, in GetThreadFrames() argument
2406 Thread* thread = DecodeThread(soa, thread_id, &error); in GetThreadFrames()
2465 JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { in SuspendThread() argument
2471 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); in SuspendThread()
2492 void Dbg::ResumeThread(JDWP::ObjectId thread_id) { in ResumeThread() argument
2495 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); in ResumeThread()
2521 JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, in GetThisObject() argument
2525 Thread* thread = DecodeThread(soa, thread_id, &error); in GetThisObject()
2579 JDWP::ObjectId thread_id = request->ReadThreadId(); in GetLocalValues() local
2584 Thread* thread = DecodeThread(soa, thread_id, &error); in GetLocalValues()
2748 JDWP::ObjectId thread_id = request->ReadThreadId(); in SetLocalValues() local
2753 Thread* thread = DecodeThread(soa, thread_id, &error); in SetLocalValues()
3634 ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id) in ScopedDebuggerThreadSuspension() argument
3642 thread_ = DecodeThread(soa, thread_id, &error_); in ScopedDebuggerThreadSuspension()
3650 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); in ScopedDebuggerThreadSuspension()
3692 JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, in ConfigureStep() argument
3695 ScopedDebuggerThreadSuspension sts(self, thread_id); in ConfigureStep()
3799 void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { in UnconfigureStep() argument
3802 Thread* thread = DecodeThread(soa, thread_id, &error); in UnconfigureStep()
3837 JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, in PrepareInvokeMethod() argument
3851 targetThread = DecodeThread(soa, thread_id, &error); in PrepareInvokeMethod()
3853 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; in PrepareInvokeMethod()
3901 gRegistry->Get<mirror::Object*>(thread_id, &error); in PrepareInvokeMethod()
3963 request_id, thread_id, receiver, c, m, options, arg_values, arg_count); in PrepareInvokeMethod()
4180 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id); in FinishInvokeMethod()