Searched defs:shutting_down (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dscoped_thread_state_change.h66 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDown(nullptr); variable
67 CHECK(shutting_down); variable
/art/runtime/base/
H A Dmutex.cc333 bool shutting_down = IsShuttingDown(); local
336 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
339 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
343 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
354 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
543 bool shutting_down = runtime == nullptr || runtime->IsShuttingDownLocked();
544 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
769 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); local
770 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
781 bool shutting_down
[all...]

Completed in 215 milliseconds