Home
last modified time | relevance | path

Searched refs:GetThreadCount (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dthread_pool.cc91 while (GetThreadCount() < num_threads) { in ThreadPool()
92 const std::string name = StringPrintf("%s worker thread %zu", name_.c_str(), GetThreadCount()); in ThreadPool()
101 CHECK_LE(threads, GetThreadCount()); in SetMaxActiveWorkers()
135 const size_t thread_count = GetThreadCount(); in GetTask()
147 if (waiting_count_ == GetThreadCount() && tasks_.empty()) { in GetTask()
188 while (!shutting_down_ && (waiting_count_ != GetThreadCount() || !tasks_.empty())) { in Wait()
281 while (GetThreadCount() < num_threads) { in WorkStealingThreadPool()
282 const std::string name = StringPrintf("Work stealing worker %zu", GetThreadCount()); in WorkStealingThreadPool()
288 const size_t thread_count = GetThreadCount(); in FindTaskToStealFrom()
Dthread_pool.h67 size_t GetThreadCount() const { in GetThreadCount() function
/art/runtime/gc/collector/
Dmark_sweep.cc714 size_t MarkSweep::GetThreadCount(bool paused) const { in GetThreadCount() function in art::gc::collector::MarkSweep
728 size_t thread_count = GetThreadCount(paused); in ScanGrayObjects()
852 size_t thread_count = GetThreadCount(false); in RecursiveMark()
1191 size_t thread_count = GetThreadCount(paused); in ProcessMarkStack()
Dmark_sweep.h246 size_t GetThreadCount(bool paused) const;
/art/compiler/driver/
Dcompiler_driver.h413 size_t GetThreadCount() const { in GetThreadCount() function