Home
last modified time | relevance | path

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

/art/runtime/
Dthread_pool.cc128 while (GetThreadCount() < num_threads) { in ThreadPool()
130 GetThreadCount()); in ThreadPool()
140 CHECK_LE(threads, GetThreadCount()); in SetMaxActiveWorkers()
174 const size_t thread_count = GetThreadCount(); in GetTask()
186 if (waiting_count_ == GetThreadCount() && tasks_.empty()) { in GetTask()
228 while (!shutting_down_ && (waiting_count_ != GetThreadCount() || !tasks_.empty())) { in Wait()
Dthread_pool.h84 size_t GetThreadCount() const { in GetThreadCount() function
/art/compiler/jit/
Djit_compiler.cc173 size_t thread_count = compiler_driver_->GetThreadCount(); in JitCompiler()
/art/runtime/gc/collector/
Dmark_sweep.cc848 size_t MarkSweep::GetThreadCount(bool paused) const { in GetThreadCount() function in art::gc::collector::MarkSweep
860 size_t thread_count = GetThreadCount(paused); in ScanGrayObjects()
1012 size_t thread_count = GetThreadCount(false); in RecursiveMark()
1395 size_t thread_count = GetThreadCount(paused); in ProcessMarkStack()
Dmark_sweep.h267 size_t GetThreadCount(bool paused) const;
/art/compiler/driver/
Dcompiler_driver.h401 size_t GetThreadCount() const { in GetThreadCount() function
/art/compiler/optimizing/
Doptimizing_compiler.cc345 CHECK_EQ(driver->GetThreadCount(), 1U) in Init()