Lines Matching refs:thread_pool_
283 thread_pool_.reset(new ThreadPool("Jit thread pool", 1)); in CreateThreadPool()
284 thread_pool_->SetPthreadPriority(kJitPoolThreadPthreadPriority); in CreateThreadPool()
285 thread_pool_->StartWorkers(Thread::Current()); in CreateThreadPool()
291 if (thread_pool_ != nullptr) { in DeleteThreadPool()
297 cache = thread_pool_.release(); in DeleteThreadPool()
591 if (thread_pool_ == nullptr) { in AddSamples()
601 DCHECK(thread_pool_ != nullptr); in AddSamples()
621 if (thread_pool_ == nullptr) { in AddSamples()
631 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::kAllocateProfile)); in AddSamples()
640 DCHECK(thread_pool_ != nullptr); in AddSamples()
641 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::kCompile)); in AddSamples()
651 DCHECK(thread_pool_ != nullptr); in AddSamples()
652 thread_pool_->AddTask(self, new JitCompileTask(method, JitCompileTask::kCompileOsr)); in AddSamples()
698 if (thread_pool_ != nullptr) { in WaitForCompilationToFinish()
699 thread_pool_->Wait(self, false, false); in WaitForCompilationToFinish()