Home
last modified time | relevance | path

Searched refs:shutting_down_ (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dthread_pool.cc161 shutting_down_(false), in ThreadPool()
177 shutting_down_ = false; in CreateThreads()
204 shutting_down_ = true; in DeleteThreads()
296 while (!shutting_down_ && (waiting_count_ != GetThreadCount() || HasOutstandingTasks())) { in Wait()
Dthread_pool.h179 return shutting_down_; in IsShuttingDown()
191 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
Druntime.h222 return shutting_down_; in IsShuttingDownLocked()
1127 bool shutting_down_ GUARDED_BY(Locks::runtime_shutdown_lock_);
Druntime.cc255 shutting_down_(false), in Runtime()
401 shutting_down_ = true; in ~Runtime()
/art/adbconnection/
Dadbconnection.h152 std::atomic<bool> shutting_down_; variable
Dadbconnection.cc158 shutting_down_(false), in AdbConnectionState()
497 while (!shutting_down_) { in SetupAdbConnection()
533 while (!shutting_down_) { in RunPollLoop()
539 while (!shutting_down_ && control_ctx_) { in RunPollLoop()
859 shutting_down_ = true; in StopDebuggerThreads()
/art/runtime/jit/
Dprofile_saver.cc89 shutting_down_(false), in ProfileSaver()
117 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyStartupCompleted()
220 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyJitActivity()
797 if (instance_->shutting_down_) { in Stop()
801 instance_->shutting_down_ = true; in Stop()
830 return shutting_down_; in ShuttingDown()
Dprofile_saver.h130 bool shutting_down_ GUARDED_BY(Locks::profiler_lock_);
/art/dex2oat/
Ddex2oat.cc582 shutting_down_(false) { in WatchDog()
599 shutting_down_ = true; in ~WatchDog()
671 while (!shutting_down_) { in Wait()
704 bool shutting_down_; member in art::WatchDog