Home
last modified time | relevance | path

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

/art/runtime/
Dthread-inl.h76 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i)); in CheckEmptyCheckpointFromWeakRefAccess() local
77 if (held_mutex != nullptr && in CheckEmptyCheckpointFromWeakRefAccess()
78 held_mutex != Locks::mutator_lock_ && in CheckEmptyCheckpointFromWeakRefAccess()
79 held_mutex != cond_var_mutex) { in CheckEmptyCheckpointFromWeakRefAccess()
80 CHECK(Locks::IsExpectedOnWeakRefAccess(held_mutex)) in CheckEmptyCheckpointFromWeakRefAccess()
81 << "Holding unexpected mutex " << held_mutex->GetName() in CheckEmptyCheckpointFromWeakRefAccess()
156 BaseMutex* held_mutex = GetHeldMutex(static_cast<LockLevel>(i)); in AssertThreadSuspensionIsAllowable() local
157 if (held_mutex != nullptr) { in AssertThreadSuspensionIsAllowable()
158 LOG(ERROR) << "holding \"" << held_mutex->GetName() in AssertThreadSuspensionIsAllowable()
/art/runtime/base/
Dmutex-inl.h129 BaseMutex* held_mutex = self->GetHeldMutex(lock_level_i); in RegisterAsLocked() local
135 } else if (UNLIKELY(held_mutex != nullptr) && lock_level_i != kAbortLock) { in RegisterAsLocked()
136 LOG(ERROR) << "Lock level violation: holding \"" << held_mutex->name_ << "\" " in RegisterAsLocked()
Dmutex.cc245 BaseMutex* held_mutex = self->GetHeldMutex(static_cast<LockLevel>(i)); in CheckSafeToWait() local
253 if (held_mutex == Locks::user_code_suspension_lock_) { in CheckSafeToWait()
262 oss << "Holding \"" << held_mutex->name_ << "\" " in CheckSafeToWait()
270 } else if (held_mutex != nullptr) { in CheckSafeToWait()
272 oss << "Holding \"" << held_mutex->name_ << "\" " in CheckSafeToWait()