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

/art/runtime/
H A Dscoped_thread_state_change.h64 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDown(nullptr); variable
65 CHECK(shutting_down); variable
/art/runtime/base/
H A Dmutex.cc286 bool shutting_down = IsShuttingDown(); local
289 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: "
293 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found an owner on unlocked mutex "
297 LOG(shutting_down ? WARNING : FATAL) << "unexpectedly found a contender on mutex " << name_;
308 PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_;
486 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked();
487 PLOG(shutting_down ? WARNING : FATAL) << "pthread_rwlock_destroy failed for " << name_;
693 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); local
694 LOG(shutting_down ? WARNING : FATAL) << "ConditionVariable::~ConditionVariable for " << name_
705 bool shutting_down
[all...]

Completed in 224 milliseconds