HomeSort by relevance Sort by last modified time
    Searched refs:thread_pool_ (Results 1 - 11 of 11) sorted by null

  /art/runtime/
thread_pool_test.cc 128 : 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
thread_pool.cc 42 : 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_));
thread_pool.h 72 ThreadPool* const thread_pool_; member in class:art::ThreadPoolWorker
  /art/runtime/jit/
jit.cc 301 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_ != nullptr)
    [all...]
jit.h 175 return thread_pool_.get();
213 std::unique_ptr<ThreadPool> thread_pool_; member in class:art::jit::Jit
  /external/v8/src/libplatform/
default-platform.cc 54 for (auto i = thread_pool_.begin(); i != thread_pool_.end(); ++i) {
92 thread_pool_.push_back(new WorkerThread(&queue_));
default-platform.h 81 std::vector<WorkerThread*> thread_pool_; member in class:v8::platform::DefaultPlatform
  /art/runtime/gc/collector/
mark_sweep.cc 653 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);
    [all...]
  /art/runtime/gc/
heap.h 689 return thread_pool_.get();
1296 std::unique_ptr<ThreadPool> thread_pool_; member in class:art::gc::Heap
    [all...]
heap.cc     [all...]
  /art/compiler/driver/
compiler_driver.cc 1629 ThreadPool* const thread_pool_; member in class:art::ParallelCompilationManager
    [all...]

Completed in 209 milliseconds