Home
last modified time | relevance | path

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

/art/runtime/base/
Dmutex-inl.h117 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i)); in RegisterAsLocked() local
118 if (UNLIKELY(held_mutex != NULL)) { in RegisterAsLocked()
119 LOG(ERROR) << "Lock level violation: holding \"" << held_mutex->name_ << "\" " in RegisterAsLocked()
Dmutex.cc161 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i)); in CheckSafeToWait() local
163 if (held_mutex != NULL && i != kThreadListSuspendThreadLock) { in CheckSafeToWait()
164 LOG(ERROR) << "Holding \"" << held_mutex->name_ << "\" " in CheckSafeToWait()
/art/runtime/
Dthread-inl.h67 BaseMutex* held_mutex = GetHeldMutex(static_cast<LockLevel>(i)); in AssertThreadSuspensionIsAllowable() local
68 if (held_mutex != NULL) { in AssertThreadSuspensionIsAllowable()
69 LOG(ERROR) << "holding \"" << held_mutex->GetName() in AssertThreadSuspensionIsAllowable()