OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:held_mutex
(Results
1 - 4
of
4
) sorted by null
/art/runtime/
thread-inl.h
47
BaseMutex*
held_mutex
= GetHeldMutex(static_cast<LockLevel>(i));
48
if (
held_mutex
!= NULL) {
49
LOG(ERROR) << "holding \"" <<
held_mutex
->GetName()
thread.cc
655
BaseMutex*
held_mutex
= Thread::Current()->GetHeldMutex(static_cast<LockLevel>(i));
local
656
if (
held_mutex
!= NULL) {
657
LOG(FATAL) << "Holding " <<
held_mutex
->GetName()
[
all
...]
/art/runtime/base/
mutex-inl.h
100
BaseMutex*
held_mutex
= self->GetHeldMutex(static_cast<LockLevel>(i));
local
101
if (UNLIKELY(
held_mutex
!= NULL)) {
102
LOG(ERROR) << "Lock level violation: holding \"" <<
held_mutex
->name_ << "\" "
mutex.cc
182
BaseMutex*
held_mutex
= self->GetHeldMutex(static_cast<LockLevel>(i));
local
183
if (
held_mutex
!= NULL) {
184
LOG(ERROR) << "Holding \"" <<
held_mutex
->name_ << "\" "
Completed in 201 milliseconds