Home | History | Annotate | Download | only in runtime

Lines Matching defs:thread_id

434 static JDWP::JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread)
438 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id);
949 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id,
986 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1000 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id,
1007 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1972 JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string& name) {
1976 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
1982 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
1993 JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
1995 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id);
2005 error = DecodeThread(soa, thread_id, thread);
2179 JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus,
2187 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2204 JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) {
2208 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2217 JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) {
2221 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2296 JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t& result) {
2300 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2311 JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame,
2353 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2382 JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) {
2387 peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id)));
2408 void Dbg::ResumeThread(JDWP::ObjectId thread_id) {
2410 mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id);
2454 JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
2460 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2509 JDWP::ObjectId thread_id = request->ReadThreadId();
2516 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
2675 JDWP::ObjectId thread_id = request->ReadThreadId();
2682 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
3348 ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id)
3358 error_ = DecodeThread(soa, thread_id, thread_);
3365 jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id);
3407 JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size,
3410 ScopedThreadSuspension sts(self, thread_id);
3541 void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) {
3545 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);
3581 JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id,
3595 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread);
3597 LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id;
3636 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id);
3742 SuspendThread(thread_id, false /* request_suspension */);