Home
last modified time | relevance | path

Searched refs:IsShuttingDown (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dscoped_thread_state_change.h43 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDown(self_)); in ScopedThreadStateChange()
66 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDown(nullptr); in LOCKS_EXCLUDED()
Dthread_pool.h120 bool IsShuttingDown() const EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_) { in IsShuttingDown() function
Dthread_pool.cc136 while (!IsShuttingDown()) { in GetTask()
Druntime.h181 bool IsShuttingDown(Thread* self);
Druntime.cc673 bool Runtime::IsShuttingDown(Thread* self) { in IsShuttingDown() function in art::Runtime
/art/runtime/base/
Dmutex.cc324 static bool IsShuttingDown() NO_THREAD_SAFETY_ANALYSIS { in IsShuttingDown() function
330 bool shutting_down = IsShuttingDown(); in ~Mutex()
761 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); in ~ConditionVariable()
/art/runtime/gc/
Dheap.cc1831 if (Runtime::Current()->IsShuttingDown(self)) { in PerformHomogeneousSpaceCompact()
1913 if (runtime->IsShuttingDown(self)) { in TransitionCollector()
3415 return runtime != nullptr && runtime->IsFinishedStarting() && !runtime->IsShuttingDown(self) && in CanAddHeapTask()
3432 if (!Runtime::Current()->IsShuttingDown(self)) { in ConcurrentGC()