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

/art/runtime/
H A Dthread_pool_test.cc128 : thread_pool_(thread_pool),
134 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1));
135 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1));
146 ThreadPool* const thread_pool_; member in class:art::TreeTask
H A Dthread_pool.cc42 : thread_pool_(thread_pool),
81 thread_pool_->creation_barier_.Wait(self);
82 while ((task = thread_pool_->GetTask(self)) != nullptr) {
94 worker->thread_pool_->create_peers_));
H A Dthread_pool.h72 ThreadPool* const thread_pool_; member in class:art::ThreadPoolWorker
/art/runtime/jit/
H A Djit.cc301 thread_pool_.reset(new ThreadPool("Jit thread pool", 1, kJitPoolNeedsPeers));
303 thread_pool_->SetPthreadPriority(kJitPoolThreadPthreadPriority);
310 if (thread_pool_ != nullptr) {
314 // Clear thread_pool_ field while the threads are suspended.
316 cache = thread_pool_.release();
612 if (thread_pool_ == nullptr) {
622 DCHECK(thread_pool_ != nullptr);
642 if (thread_pool_ == nullptr) {
652 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::kAllocateProfile));
661 DCHECK(thread_pool_ !
[all...]
H A Djit.h175 return thread_pool_.get();
213 std::unique_ptr<ThreadPool> thread_pool_; member in class:art::jit::Jit
/art/runtime/gc/collector/
H A Dmark_sweep.cc653 thread_pool_(thread_pool),
744 ThreadPool* const thread_pool_; member in class:art::gc::collector::MarkSweep::MarkStackTask
755 auto* task = new MarkStackTask(thread_pool_,
759 thread_pool_->AddTask(Thread::Current(), task);
/art/runtime/gc/
H A Dheap.h689 return thread_pool_.get();
1296 std::unique_ptr<ThreadPool> thread_pool_; member in class:art::gc::Heap
H A Dheap.cc898 thread_pool_.reset(new ThreadPool("Heap thread pool", num_threads));
1003 thread_pool_.reset(nullptr);
/art/compiler/driver/
H A Dcompiler_driver.cc1542 thread_pool_(thread_pool) {}
1575 thread_pool_->AddTask(self, new ForAllClosure(this, end, visitor));
1577 thread_pool_->StartWorkers(self);
1584 thread_pool_->Wait(self, true, false);
1587 thread_pool_->StopWorkers(self);
1629 ThreadPool* const thread_pool_; member in class:art::ParallelCompilationManager

Completed in 139 milliseconds