Lines Matching refs:thread_id
95 ObjectId thread_id, ObjectId object_id, in FinishInvoke() argument
102 VLOG(jdwp) << StringPrintf(" --> thread_id=%#llx object_id=%#llx", thread_id, object_id); in FinishInvoke()
125 …JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.… in FinishInvoke()
682 ObjectId thread_id = request.ReadThreadId(); in CT_InvokeMethod() local
685 return FinishInvoke(state, request, pReply, thread_id, 0, class_id, method_id, false); in CT_InvokeMethod()
698 ObjectId thread_id = request.ReadThreadId(); in CT_NewInstance() local
709 return FinishInvoke(state, request, pReply, thread_id, object_id, class_id, method_id, true); in CT_NewInstance()
867 ObjectId thread_id = request.ReadThreadId(); in OR_InvokeMethod() local
871 return FinishInvoke(state, request, pReply, thread_id, object_id, class_id, method_id, false); in OR_InvokeMethod()
932 ObjectId thread_id = request.ReadThreadId(); in TR_Name() local
935 JdwpError error = Dbg::GetThreadName(thread_id, name); in TR_Name()
939 VLOG(jdwp) << StringPrintf(" Name of thread %#llx is \"%s\"", thread_id, name.c_str()); in TR_Name()
953 ObjectId thread_id = request.ReadThreadId(); in TR_Suspend() local
955 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Suspend()
962 JdwpError result = Dbg::SuspendThread(thread_id); in TR_Suspend()
972 ObjectId thread_id = request.ReadThreadId(); in TR_Resume() local
974 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Resume()
979 Dbg::ResumeThread(thread_id); in TR_Resume()
988 ObjectId thread_id = request.ReadThreadId(); in TR_Status() local
992 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); in TR_Status()
1010 ObjectId thread_id = request.ReadThreadId(); in TR_ThreadGroup() local
1011 return Dbg::GetThreadGroup(thread_id, pReply); in TR_ThreadGroup()
1022 ObjectId thread_id = request.ReadThreadId(); in TR_Frames() local
1027 JdwpError error = Dbg::GetThreadFrameCount(thread_id, actual_frame_count); in TR_Frames()
1046 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply); in TR_Frames()
1054 ObjectId thread_id = request.ReadThreadId(); in TR_FrameCount() local
1057 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, frame_count); in TR_FrameCount()
1068 ObjectId thread_id = request.ReadThreadId(); in TR_OwnedMonitors() local
1072 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, monitors, stack_depths); in TR_OwnedMonitors()
1102 ObjectId thread_id = request.ReadThreadId(); in TR_CurrentContendedMonitor() local
1105 JdwpError rc = Dbg::GetContendedMonitor(thread_id, contended_monitor); in TR_CurrentContendedMonitor()
1114 ObjectId thread_id = request.ReadThreadId(); in TR_Interrupt() local
1115 return Dbg::Interrupt(thread_id); in TR_Interrupt()
1126 ObjectId thread_id = request.ReadThreadId(); in TR_DebugSuspendCount() local
1127 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply); in TR_DebugSuspendCount()
1279 ObjectId thread_id = request.ReadThreadId(); in ER_Set() local
1280 mod.threadOnly.threadId = thread_id; in ER_Set()
1335 ObjectId thread_id = request.ReadThreadId(); in ER_Set() local
1338 VLOG(jdwp) << StringPrintf(" Step: thread=%#llx", thread_id) in ER_Set()
1341 mod.step.threadId = thread_id; in ER_Set()
1395 ObjectId thread_id = request.ReadThreadId(); in SF_GetValues() local
1408 Dbg::GetLocalValue(thread_id, frame_id, slot, reqSigByte, ptr, width); in SF_GetValues()
1419 ObjectId thread_id = request.ReadThreadId(); in SF_SetValues() local
1430 Dbg::SetLocalValue(thread_id, frame_id, slot, sigByte, value, width); in SF_SetValues()
1438 ObjectId thread_id = request.ReadThreadId(); in SF_ThisObject() local
1442 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id); in SF_ThisObject()