• Home
  • History
  • Annotate
  • Raw
  • Download

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()
653 ObjectId thread_id = request->ReadThreadId(); in CT_InvokeMethod() local
656 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in CT_InvokeMethod()
670 ObjectId thread_id = request->ReadThreadId(); in CT_NewInstance() local
678 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, true); in CT_NewInstance()
706 ObjectId thread_id = request->ReadThreadId(); in IT_InvokeMethod() local
709 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in IT_InvokeMethod()
855 ObjectId thread_id = request->ReadThreadId(); in OR_InvokeMethod() local
859 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false); in OR_InvokeMethod()
924 ObjectId thread_id = request->ReadThreadId(); in TR_Name() local
927 JdwpError error = Dbg::GetThreadName(thread_id, &name); in TR_Name()
931 VLOG(jdwp) << StringPrintf(" Name of thread %#" PRIx64 " is \"%s\"", thread_id, name.c_str()); in TR_Name()
945 ObjectId thread_id = request->ReadThreadId(); in TR_Suspend() local
947 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Suspend()
954 JdwpError result = Dbg::SuspendThread(thread_id); in TR_Suspend()
963 ObjectId thread_id = request->ReadThreadId(); in TR_Resume() local
965 if (thread_id == Dbg::GetThreadSelfId()) { in TR_Resume()
970 Dbg::ResumeThread(thread_id); in TR_Resume()
979 ObjectId thread_id = request->ReadThreadId(); in TR_Status() local
983 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); in TR_Status()
1001 ObjectId thread_id = request->ReadThreadId(); in TR_ThreadGroup() local
1002 return Dbg::GetThreadGroup(thread_id, pReply); in TR_ThreadGroup()
1013 ObjectId thread_id = request->ReadThreadId(); in TR_Frames() local
1018 JdwpError error = Dbg::GetThreadFrameCount(thread_id, &actual_frame_count); in TR_Frames()
1037 return Dbg::GetThreadFrames(thread_id, start_frame, length, pReply); in TR_Frames()
1045 ObjectId thread_id = request->ReadThreadId(); in TR_FrameCount() local
1048 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, &frame_count); in TR_FrameCount()
1059 ObjectId thread_id = request->ReadThreadId(); in TR_OwnedMonitors() local
1063 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, &monitors, &stack_depths); in TR_OwnedMonitors()
1093 ObjectId thread_id = request->ReadThreadId(); in TR_CurrentContendedMonitor() local
1096 JdwpError rc = Dbg::GetContendedMonitor(thread_id, &contended_monitor); in TR_CurrentContendedMonitor()
1105 ObjectId thread_id = request->ReadThreadId(); in TR_Interrupt() local
1106 return Dbg::Interrupt(thread_id); in TR_Interrupt()
1117 ObjectId thread_id = request->ReadThreadId(); in TR_DebugSuspendCount() local
1118 return Dbg::GetThreadDebugSuspendCount(thread_id, pReply); in TR_DebugSuspendCount()
1255 ObjectId thread_id = request->ReadThreadId(); in ER_Set() local
1256 mod.threadOnly.threadId = thread_id; in ER_Set()
1311 ObjectId thread_id = request->ReadThreadId(); in ER_Set() local
1314 VLOG(jdwp) << StringPrintf(" Step: thread=%#" PRIx64, thread_id) in ER_Set()
1317 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()