Lines Matching refs:thread_id
473 static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id,
477 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error);
882 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
919 Thread* thread = DecodeThread(soa, thread_id, &error);
932 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
937 Thread* thread = DecodeThread(soa, thread_id, &error);
2018 JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) {
2021 Thread* thread = DecodeThread(soa, thread_id, &error);
2028 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2040 JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
2043 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error);
2049 Thread* thread = DecodeThread(soa, thread_id, &error);
2233 JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2240 Thread* thread = DecodeThread(soa, thread_id, &error);
2257 JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
2260 Thread* thread = DecodeThread(soa, thread_id, &error);
2269 JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2272 Thread* thread = DecodeThread(soa, thread_id, &error);
2348 JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) {
2352 Thread* thread = DecodeThread(soa, thread_id, &error);
2363 JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2406 Thread* thread = DecodeThread(soa, thread_id, &error);
2435 JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
2441 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error)));
2460 void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
2463 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error);
2510 JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2514 Thread* thread = DecodeThread(soa, thread_id, &error);
2564 JDWP::ObjectId thread_id = request->ReadThreadId();
2569 Thread* thread = DecodeThread(soa, thread_id, &error);
2735 JDWP::ObjectId thread_id = request->ReadThreadId();
2740 Thread* thread = DecodeThread(soa, thread_id, &error);
3621 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
3629 thread_ = DecodeThread(soa, thread_id, &error_);
3635 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
3673 JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3676 ScopedThreadSuspension sts(self, thread_id);
3801 void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3804 Thread* thread = DecodeThread(soa, thread_id, &error);
3839 JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id,
3852 targetThread = DecodeThread(soa, thread_id, &error);
3854 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3897 gRegistry->Get<mirror::Object*>(thread_id, &error);
3958 DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m,
4166 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id);