Home
last modified time | relevance | path

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

/art/runtime/
Dthread_pool.cc92 while (GetThreadCount() < num_threads) { in ThreadPool()
94 GetThreadCount()); in ThreadPool()
103 CHECK_LE(threads, GetThreadCount()); in SetMaxActiveWorkers()
137 const size_t thread_count = GetThreadCount(); in GetTask()
149 if (waiting_count_ == GetThreadCount() && tasks_.empty()) { in GetTask()
190 while (!shutting_down_ && (waiting_count_ != GetThreadCount() || !tasks_.empty())) { in Wait()
283 while (GetThreadCount() < num_threads) { in WorkStealingThreadPool()
284 const std::string worker_name = StringPrintf("Work stealing worker %zu", GetThreadCount()); in WorkStealingThreadPool()
291 const size_t thread_count = GetThreadCount(); in FindTaskToStealFrom()
Dthread_pool.h80 size_t GetThreadCount() const { in GetThreadCount() function
/art/runtime/gc/collector/
Dmark_sweep.cc799 size_t MarkSweep::GetThreadCount(bool paused) const { in GetThreadCount() function in art::gc::collector::MarkSweep
809 size_t thread_count = GetThreadCount(paused); in ScanGrayObjects()
945 size_t thread_count = GetThreadCount(false); in RecursiveMark()
1313 size_t thread_count = GetThreadCount(paused); in ProcessMarkStack()
Dmark_sweep.h251 size_t GetThreadCount(bool paused) const;
/art/compiler/optimizing/
Doptimizing_compiler.cc261 CHECK_EQ(driver->GetThreadCount(), 1U) in Init()
/art/compiler/driver/
Dcompiler_driver.h411 size_t GetThreadCount() const { in GetThreadCount() function