Home
last modified time | relevance | path

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

/art/runtime/
Dscoped_thread_state_change.cc45 bool shutting_down = (runtime == nullptr) || runtime->IsShuttingDown(nullptr) || gAborting > 0; in ScopedThreadChangeDestructorCheck()
Dscoped_thread_state_change-inl.h39 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDown(self_)); in ScopedThreadStateChange()
Dthread_pool.h178 bool IsShuttingDown() const REQUIRES(task_queue_lock_) { in IsShuttingDown() function
Dthread_pool.cc241 while (!IsShuttingDown()) { in GetTask()
Doat_file_manager.cc757 if (runtime->IsShuttingDown(self)) { in RunBackgroundVerification()
784 DCHECK(!Runtime::Current()->IsShuttingDown(Thread::Current())) in WaitForWorkersToBeCreated()
Druntime.h220 bool IsShuttingDown(Thread* self);
Druntime.cc629 if (current != nullptr && current->IsStarted() && !current->IsShuttingDown(nullptr)) { in Abort()
1094 bool Runtime::IsShuttingDown(Thread* self) { in IsShuttingDown() function in art::Runtime
/art/runtime/jit/
Dprofile_saver.cc666 CHECK(runtime->IsShuttingDown(Thread::Current())); in RunProfileSaverThread()
/art/runtime/gc/
Dheap.cc2084 if (Runtime::Current()->IsShuttingDown(self)) { in PerformHomogeneousSpaceCompact()
3697 return runtime != nullptr && runtime->IsFinishedStarting() && !runtime->IsShuttingDown(self) && in CanAddHeapTask()
3715 if (!Runtime::Current()->IsShuttingDown(self)) { in ConcurrentGC()
4122 CHECK(Runtime::Current()->IsShuttingDown(self)); in DisableGCForShutdown()
/art/runtime/jni/
Djava_vm_ext.cc843 DCHECK(Runtime::Current()->IsShuttingDown(self)); in DecodeWeakGlobalDuringShutdown()