Home | History | Annotate | Download | only in runtime

Lines Matching defs:ThreadPool

30 class ThreadPool;
50 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
54 ThreadPool* const thread_pool_;
60 friend class ThreadPool;
64 class ThreadPool {
81 explicit ThreadPool(const char* name, size_t num_threads);
82 virtual ~ThreadPool();
131 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
162 WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
170 class WorkStealingThreadPool : public ThreadPool {