Searched refs:thread_id (Results 1 – 12 of 12) sorted by relevance
/art/runtime/ |
D | java_frame_root_info.h | 47 JavaFrameRootInfo(uint32_t thread_id, const StackVisitor* stack_visitor, size_t vreg) in JavaFrameRootInfo() argument 48 : RootInfo(kRootJavaFrame, thread_id), stack_visitor_(stack_visitor), vreg_(vreg) { in JavaFrameRootInfo()
|
D | lock_word.h | 141 static LockWord FromThinLockId(uint32_t thread_id, uint32_t count, uint32_t gc_state) { in FromThinLockId() argument 142 CHECK_LE(thread_id, static_cast<uint32_t>(kThinLockMaxOwner)); in FromThinLockId() 145 return LockWord((thread_id << kThinLockOwnerShift) | in FromThinLockId()
|
D | thread_list.cc | 1002 uint32_t thread_id) { in ThreadSuspendByThreadIdWarning() argument 1003 LOG(severity) << StringPrintf("%s: %d", message, thread_id); in ThreadSuspendByThreadIdWarning() 1006 Thread* ThreadList::SuspendThreadByThreadId(uint32_t thread_id, in SuspendThreadByThreadId() argument 1014 CHECK_NE(thread_id, kInvalidThreadId); in SuspendThreadByThreadId() 1027 if (it->GetThreadId() == thread_id) { in SuspendThreadByThreadId() 1038 thread_id); in SuspendThreadByThreadId() 1073 name.c_str(), thread_id).c_str()); in SuspendThreadByThreadId() 1082 thread_id); in SuspendThreadByThreadId() 1104 Thread* ThreadList::FindThreadByThreadId(uint32_t thread_id) { in FindThreadByThreadId() argument 1106 if (thread->GetThreadId() == thread_id) { in FindThreadByThreadId()
|
D | monitor.cc | 1103 uint32_t thread_id = self->GetThreadId(); in MonitorEnter() local 1119 LockWord thin_locked(LockWord::FromThinLockId(thread_id, 0, lock_word.GCState())); in MonitorEnter() 1133 if (owner_thread_id == thread_id) { in MonitorEnter() 1138 LockWord thin_locked(LockWord::FromThinLockId(thread_id, in MonitorEnter() 1237 uint32_t thread_id = self->GetThreadId(); in MonitorExit() local 1239 if (owner_thread_id != thread_id) { in MonitorExit() 1240 FailedUnlock(h_obj.Get(), thread_id, owner_thread_id, nullptr); in MonitorExit() 1247 new_lw = LockWord::FromThinLockId(thread_id, new_count, lock_word.GCState()); in MonitorExit() 1309 uint32_t thread_id = self->GetThreadId(); in Wait() local 1311 if (owner_thread_id != thread_id) { in Wait() [all …]
|
D | thread_list.h | 99 Thread* SuspendThreadByThreadId(uint32_t thread_id, SuspendReason reason, bool* timed_out) 105 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 | monitor.h | 397 uint32_t thread_id)
|
D | thread.h | 900 void HandleScopeVisitRoots(RootVisitor* visitor, pid_t thread_id)
|
/art/test/913-heaps/ |
D | heaps.cc | 318 jlong thread_id = 1; in Java_art_Test913_followReferences() local 321 thread_id, in Java_art_Test913_followReferences() 364 jlong thread_id = 1; in Java_art_Test913_followReferences() local 367 thread_id, in Java_art_Test913_followReferences()
|
/art/openjdkjvmti/ |
D | ti_heap.cc | 991 uint32_t thread_id = info.GetThreadId(); in GetReferenceKind() local 992 ref_info->jni_local.thread_id = thread_id; in GetReferenceKind() 1023 uint32_t thread_id = info.GetThreadId(); in GetReferenceKind() local 1024 ref_info->stack_local.thread_id = thread_id; in GetReferenceKind()
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 556 jlong thread_id; member 564 jlong thread_id; member
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 577 .Lnot_unlocked: @ r2: original lock word, r1: thread_id, r3: r2 ^ r1
|