Searched defs:ThreadPool (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dthread_pool.cc28 ThreadPoolWorker::ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name,
68 void ThreadPool::AddTask(Thread* self, Task* task) {
77 ThreadPool::ThreadPool(const char* name, size_t num_threads) function in class:art::ThreadPool
99 void ThreadPool::SetMaxActiveWorkers(size_t threads) {
105 ThreadPool::~ThreadPool() {
119 void ThreadPool::StartWorkers(Thread* self) {
127 void ThreadPool::StopWorkers(Thread* self) {
132 Task* ThreadPool
[all...]
H A Dthread_pool.h30 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 { class in namespace:art
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 {
[all...]

Completed in 42 milliseconds