/art/runtime/jdwp/ |
D | jdwp_handler.cc | 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 [all …]
|
D | jdwp_event.cc | 827 ObjectId thread_id) in LogMatchingEventsAndThread() argument 835 JdwpError error = Dbg::GetThreadName(thread_id, &thread_name); in LogMatchingEventsAndThread() 839 VLOG(jdwp) << StringPrintf(" thread=%#" PRIx64, thread_id) << " " << thread_name; in LogMatchingEventsAndThread() 933 ObjectId thread_id = Dbg::GetThreadId(basket.thread); in PostLocationEvent() local 938 LogMatchingEventsAndThread(match_list, thread_id); in PostLocationEvent() 950 expandBufAddObjectId(pReq, thread_id); in PostLocationEvent() 964 SendRequestAndPossiblySuspend(pReq, suspend_policy, thread_id); in PostLocationEvent() 995 ObjectId thread_id = Dbg::GetThreadId(basket.thread); in PostFieldEvent() local 1004 LogMatchingEventsAndThread(match_list, thread_id); in PostFieldEvent() 1031 expandBufAddObjectId(pReq, thread_id); in PostFieldEvent() [all …]
|
/art/runtime/ |
D | java_frame_root_info.h | 32 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg) in JavaFrameRootInfo() argument 33 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) { in JavaFrameRootInfo()
|
D | debugger.h | 81 : request_id(invoke_request_id), thread_id(invoke_thread_id), receiver(invoke_receiver), in DebugInvokeReq() 92 const JDWP::ObjectId thread_id; member 362 static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id, 366 static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id, 449 static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string* name) 451 static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) 466 static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id, 470 static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, 480 static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) 482 static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, [all …]
|
D | lock_word.h | 137 static LockWord FromThinLockId(uint32_t thread_id, uint32_t count, uint32_t gc_state) { in FromThinLockId() argument 138 CHECK_LE(thread_id, static_cast<uint32_t>(kThinLockMaxOwner)); in FromThinLockId() 141 return LockWord((thread_id << kThinLockOwnerShift) | in FromThinLockId()
|
D | monitor.cc | 1029 uint32_t thread_id = self->GetThreadId(); in MonitorEnter() local 1041 LockWord thin_locked(LockWord::FromThinLockId(thread_id, 0, lock_word.GCState())); in MonitorEnter() 1050 if (owner_thread_id == thread_id) { in MonitorEnter() 1055 LockWord thin_locked(LockWord::FromThinLockId(thread_id, in MonitorEnter() 1143 uint32_t thread_id = self->GetThreadId(); in MonitorExit() local 1145 if (owner_thread_id != thread_id) { in MonitorExit() 1146 FailedUnlock(h_obj.Get(), thread_id, owner_thread_id, nullptr); in MonitorExit() 1153 new_lw = LockWord::FromThinLockId(thread_id, new_count, lock_word.GCState()); in MonitorExit() 1211 uint32_t thread_id = self->GetThreadId(); in Wait() local 1213 if (owner_thread_id != thread_id) { in Wait() [all …]
|
D | debugger.cc | 453 static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, in DecodeThread() argument 457 mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); in DecodeThread() 885 JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, in GetOwnedMonitors() argument 922 Thread* thread = DecodeThread(soa, thread_id, &error); in GetOwnedMonitors() 935 JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, in GetContendedMonitor() argument 940 Thread* thread = DecodeThread(soa, thread_id, &error); in GetContendedMonitor() 2094 JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { in GetThreadName() argument 2097 DecodeThread(soa, thread_id, &error); in GetThreadName() 2103 mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); in GetThreadName() 2114 JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { in GetThreadGroup() argument [all …]
|
D | thread_list.cc | 1018 uint32_t thread_id) { in ThreadSuspendByThreadIdWarning() argument 1019 LOG(severity) << StringPrintf("%s: %d", message, thread_id); in ThreadSuspendByThreadIdWarning() 1022 Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, in SuspendThreadByThreadId() argument 1030 CHECK_NE(thread_id, kInvalidThreadId); in SuspendThreadByThreadId() 1043 if (it->GetThreadId() == thread_id) { in SuspendThreadByThreadId() 1054 thread_id); in SuspendThreadByThreadId() 1089 name.c_str(), thread_id).c_str()); in SuspendThreadByThreadId() 1098 thread_id); in SuspendThreadByThreadId() 1120 Thread* ThreadList::FindThreadByThreadId(uint32_t thread_id) { in FindThreadByThreadId() argument 1122 if (thread->GetThreadId() == thread_id) { in FindThreadByThreadId()
|
D | thread_list.h | 97 Thread* SuspendThreadByThreadId(uint32_t thread_id, SuspendReason reason, bool* timed_out) 103 Thread* FindThreadByThreadId(uint32_t thread_id) REQUIRES(Locks::thread_list_lock_);
|
D | gc_root.h | 63 explicit RootInfo(RootType type, uint32_t thread_id = 0) 64 : type_(type), thread_id_(thread_id) { in type_()
|
D | thread.cc | 2340 void Thread::HandleScopeVisitRoots(RootVisitor* visitor, pid_t thread_id) { in HandleScopeVisitRoots() argument 2342 visitor, RootInfo(kRootNativeStack, thread_id)); in HandleScopeVisitRoots() 3747 const pid_t thread_id = GetThreadId(); in VisitRoots() local 3748 visitor->VisitRootIfNonNull(&tlsPtr_.opeer, RootInfo(kRootThreadObject, thread_id)); in VisitRoots() 3751 RootInfo(kRootNativeStack, thread_id)); in VisitRoots() 3755 RootInfo(kRootNativeStack, thread_id)); in VisitRoots() 3757 visitor->VisitRootIfNonNull(&tlsPtr_.monitor_enter_object, RootInfo(kRootNativeStack, thread_id)); in VisitRoots() 3758 tlsPtr_.jni_env->VisitJniLocalRoots(visitor, RootInfo(kRootJNILocal, thread_id)); in VisitRoots() 3759 tlsPtr_.jni_env->VisitMonitorRoots(visitor, RootInfo(kRootJNIMonitor, thread_id)); in VisitRoots() 3760 HandleScopeVisitRoots(visitor, thread_id); in VisitRoots() [all …]
|
D | thread.h | 891 void HandleScopeVisitRoots(RootVisitor* visitor, pid_t thread_id)
|
/art/openjdkjvmti/ |
D | ti_heap.cc | 901 uint32_t thread_id = info.GetThreadId(); in GetReferenceKind() local 902 ref_info->jni_local.thread_id = thread_id; in GetReferenceKind() 931 uint32_t thread_id = info.GetThreadId(); in GetReferenceKind() local 932 ref_info->stack_local.thread_id = thread_id; in GetReferenceKind()
|
/art/test/913-heaps/ |
D | heaps.cc | 310 jlong thread_id = 1; in Java_art_Test913_followReferences() local 313 thread_id, in Java_art_Test913_followReferences() 356 jlong thread_id = 1; in Java_art_Test913_followReferences() local 359 thread_id, in Java_art_Test913_followReferences()
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 556 jlong thread_id; member 564 jlong thread_id; member
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1263 # $t1: original lock word, $t0: thread_id with count of 0 and zero read barrier bits
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 1317 # $t1: original lock word, $t0: thread_id with count of 0 and zero read barrier bits
|