Home | History | Annotate | Download | only in runtime

Lines Matching refs:ThreadPool

30 class ThreadPool;
49 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
53 ThreadPool* const thread_pool_;
59 friend class ThreadPool;
63 class ThreadPool {
80 explicit ThreadPool(size_t num_threads);
81 virtual ~ThreadPool();
129 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
160 WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
168 class WorkStealingThreadPool : public ThreadPool {