Searched refs:thread_pool_ (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Dthread_pool_test.cc108 : thread_pool_(thread_pool),
114 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1));
115 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1));
126 ThreadPool* const thread_pool_; member in class:art::TreeTask
H A Dthread_pool.cc30 : thread_pool_(thread_pool),
51 thread_pool_->creation_barier_.Wait(self);
52 while ((task = thread_pool_->GetTask(self)) != NULL) {
209 WorkStealingThreadPool* thread_pool = down_cast<WorkStealingThreadPool*>(thread_pool_);
210 while ((task = thread_pool_->GetTask(self)) != NULL) {
H A Dthread_pool.h54 ThreadPool* const thread_pool_; member in class:art::ThreadPoolWorker
/art/runtime/gc/collector/
H A Dmark_sweep.cc555 thread_pool_(thread_pool),
624 ThreadPool* const thread_pool_; member in class:art::gc::collector::MarkStackTask
634 auto* task = new MarkStackTask(thread_pool_, mark_sweep_, kMaxSize - mark_stack_pos_,
636 thread_pool_->AddTask(Thread::Current(), task);
/art/runtime/gc/
H A Dheap.h576 return thread_pool_.get();
952 std::unique_ptr<ThreadPool> thread_pool_; member in class:art::gc::Heap
H A Dheap.cc700 thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads));
738 thread_pool_.reset(nullptr);
/art/compiler/driver/
H A Dcompiler_driver.cc1462 thread_pool_(thread_pool) {}
1494 thread_pool_->AddTask(self, new ForAllClosure(this, end, callback));
1496 thread_pool_->StartWorkers(self);
1503 thread_pool_->Wait(self, true, false);
1545 ThreadPool* const thread_pool_; member in class:art::ParallelCompilationManager

Completed in 111 milliseconds