Home
last modified time | relevance | path

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

/art/runtime/
Dthread_pool.cc149 shutting_down_(false), in ThreadPool()
165 shutting_down_ = false; in CreateThreads()
192 shutting_down_ = true; in DeleteThreads()
284 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()
1131 bool shutting_down_ GUARDED_BY(Locks::runtime_shutdown_lock_);
Druntime.cc255 shutting_down_(false), in Runtime()
402 shutting_down_ = true; in ~Runtime()
/art/adbconnection/
Dadbconnection.h152 std::atomic<bool> shutting_down_; variable
Dadbconnection.cc155 shutting_down_(false), in AdbConnectionState()
490 while (!shutting_down_) { in SetupAdbConnection()
525 while (!shutting_down_) { in RunPollLoop()
531 while (!shutting_down_ && control_ctx_) { in RunPollLoop()
842 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.cc579 shutting_down_(false) { in WatchDog()
596 shutting_down_ = true; in ~WatchDog()
668 while (!shutting_down_) { in Wait()
701 bool shutting_down_; member in art::WatchDog