Lines Matching refs:thread_id
89 ObjectId thread_id, ObjectId object_id, in RequestInvoke() argument
97 thread_id, object_id); in RequestInvoke()
118 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id, in RequestInvoke()
654 ObjectId thread_id = request->ReadThreadId(); in CT_InvokeMethod() local
657 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in CT_InvokeMethod()
671 ObjectId thread_id = request->ReadThreadId(); in CT_NewInstance() local
679 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, true); in CT_NewInstance()
707 ObjectId thread_id = request->ReadThreadId(); in IT_InvokeMethod() local
710 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in IT_InvokeMethod()
856 ObjectId thread_id = request->ReadThreadId(); in OR_InvokeMethod() local
860 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false); in OR_InvokeMethod()
925 ObjectId thread_id = request->ReadThreadId(); in TR_Name() local
928 JdwpError error = Dbg::GetThreadName(thread_id, &name); in TR_Name()
932 VLOG(jdwp) << StringPrintf(" Name of thread %#" PRIx64 " is \"%s\"", thread_id, name.c_str()); in TR_Name()
946 ObjectId thread_id = request->ReadThreadId(); in TR_Suspend() local
948 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Suspend()
955 JdwpError result = Dbg::SuspendThread(thread_id); in TR_Suspend()
964 ObjectId thread_id = request->ReadThreadId(); in TR_Resume() local
966 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Resume()
971 Dbg::ResumeThread(thread_id); in TR_Resume()
980 ObjectId thread_id = request->ReadThreadId(); in TR_Status() local
984 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); in TR_Status()
1002 ObjectId thread_id = request->ReadThreadId(); in TR_ThreadGroup() local
1003 return Dbg::GetThreadGroup(thread_id, pReply); in TR_ThreadGroup()
1014 ObjectId thread_id = request->ReadThreadId(); in TR_Frames() local
1019 JdwpError error = Dbg::GetThreadFrameCount(thread_id, &actual_frame_count); in TR_Frames()
1038 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply); in TR_Frames()
1046 ObjectId thread_id = request->ReadThreadId(); in TR_FrameCount() local
1049 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, &frame_count); in TR_FrameCount()
1060 ObjectId thread_id = request->ReadThreadId(); in TR_OwnedMonitors() local
1064 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, &monitors, &stack_depths); in TR_OwnedMonitors()
1094 ObjectId thread_id = request->ReadThreadId(); in TR_CurrentContendedMonitor() local
1097 JdwpError rc = Dbg::GetContendedMonitor(thread_id, &contended_monitor); in TR_CurrentContendedMonitor()
1106 ObjectId thread_id = request->ReadThreadId(); in TR_Interrupt() local
1107 return Dbg::Interrupt(thread_id); in TR_Interrupt()
1118 ObjectId thread_id = request->ReadThreadId(); in TR_DebugSuspendCount() local
1119 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply); in TR_DebugSuspendCount()
1256 ObjectId thread_id = request->ReadThreadId(); in ER_Set() local
1257 mod.threadOnly.threadId = thread_id; in ER_Set()
1312 ObjectId thread_id = request->ReadThreadId(); in ER_Set() local
1315 VLOG(jdwp) << StringPrintf(" Step: thread=%#" PRIx64, thread_id) in ER_Set()
1318 mod.step.threadId = thread_id; in ER_Set()
1386 ObjectId thread_id = request->ReadThreadId(); in SF_ThisObject() local
1390 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id); in SF_ThisObject()