Home
last modified time | relevance | path

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

/art/runtime/
Dthread_pool.cc171 shutting_down_(false), in ThreadPool()
187 shutting_down_ = false; in CreateThreads()
214 shutting_down_ = true; in DeleteThreads()
306 while (!shutting_down_ && (waiting_count_ != GetThreadCount() || HasOutstandingTasks())) { in Wait()
Dthread_pool.h186 return shutting_down_; in IsShuttingDown()
198 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
Druntime.h225 return shutting_down_.load(std::memory_order_relaxed); in IsShuttingDownLocked()
228 return shutting_down_.load(std::memory_order_relaxed); in IsShuttingDownUnsafe()
231 shutting_down_.store(true, std::memory_order_relaxed); in SetShuttingDown()
1202 std::atomic<bool> shutting_down_; variable
Druntime.cc261 shutting_down_(false), in Runtime()
/art/adbconnection/
Dadbconnection.h152 std::atomic<bool> shutting_down_; variable
Dadbconnection.cc160 shutting_down_(false), in AdbConnectionState()
499 while (!shutting_down_) { in SetupAdbConnection()
535 while (!shutting_down_) { in RunPollLoop()
541 while (!shutting_down_ && control_ctx_) { in RunPollLoop()
865 shutting_down_ = true; in StopDebuggerThreads()
/art/runtime/jit/
Dprofile_saver.h146 bool shutting_down_ GUARDED_BY(Locks::profiler_lock_);
Dprofile_saver.cc86 shutting_down_(false), in ProfileSaver()
113 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyStartupCompleted()
285 if (instance_ == nullptr || instance_->shutting_down_) { in NotifyJitActivity()
1106 if (instance_->shutting_down_) { in Stop()
1110 instance_->shutting_down_ = true; in Stop()
1142 return shutting_down_; in ShuttingDown()
/art/dex2oat/
Ddex2oat.cc298 shutting_down_(false) { in WatchDog()
315 shutting_down_ = true; in ~WatchDog()
387 while (!shutting_down_) { in Wait()
420 bool shutting_down_; member in art::WatchDog