Home
last modified time | relevance | path

Searched refs:IsShuttingDownLocked (Results 1 – 6 of 6) sorted by relevance

/art/runtime/base/
Dmutex-inl.h90 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDownLocked() || in CheckUnattachedThread()
Dmutex.cc299 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked(); in ~Mutex()
478 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked(); in ~ReaderWriterMutex()
691 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked(); in ~ConditionVariable()
/art/runtime/
Druntime.h152 bool IsShuttingDownLocked() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) { in IsShuttingDownLocked() function
Dthread.cc158 CHECK(!runtime->IsShuttingDownLocked()); in CreateCallback()
294 if (runtime->IsShuttingDownLocked()) { in CreateNativeThread()
382 if (runtime->IsShuttingDownLocked()) { in Attach()
Dthread_list.cc752 CHECK(Runtime::Current()->IsShuttingDownLocked()); in WaitForOtherNonDaemonThreadsToExit()
Druntime.cc548 return IsShuttingDownLocked(); in IsShuttingDown()