Home
last modified time | relevance | path

Searched refs:shutting_down (Results 1 – 2 of 2) sorted by relevance

/art/runtime/base/
Dmutex.cc330 bool shutting_down = IsShuttingDown(); in ~Mutex() local
333 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_; in ~Mutex()
336 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex " in ~Mutex()
340 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_; in ~Mutex()
351 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_; in ~Mutex()
540 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked(); in ~ReaderWriterMutex()
541 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_; in ~ReaderWriterMutex()
761 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); in ~ConditionVariable() local
762 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_ in ~ConditionVariable()
773 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDownLocked(); in ~ConditionVariable()
[all …]
/art/runtime/
Dscoped_thread_state_change.h66 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDown(nullptr); in LOCKS_EXCLUDED() local
67 CHECK(shutting_down); in LOCKS_EXCLUDED()