Home
last modified time | relevance | path

Searched refs:thread_id (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc95 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
[all …]
/art/runtime/
Ddebugger.h185 static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id,
189 …static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id, JDWP::ObjectId& contended_mon…
261 static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string& name)
264 static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply);
273 …static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadSt…
274 …static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pRepl…
284 static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result);
285 static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
295 static JDWP::JdwpError SuspendThread(JDWP::ObjectId thread_id, bool request_suspension = true)
300 static void ResumeThread(JDWP::ObjectId thread_id)
[all …]
Ddebugger.cc247 static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thr… in DecodeThread() argument
251 mirror::Object* thread_peer = gRegistry->Get<mirror::Object*>(thread_id); in DecodeThread()
690 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, in GetOwnedMonitors() argument
697 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetOwnedMonitors()
742 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, JDWP::ObjectId& contended_monito… in GetContendedMonitor() argument
747 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetContendedMonitor()
1572 JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) { in GetThreadName() argument
1576 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetThreadName()
1582 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id); in GetThreadName()
1593 JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { in GetThreadGroup() argument
[all …]