Lines Matching refs:ThreadPoolWorker
49 ThreadPoolWorker::ThreadPoolWorker(AbstractThreadPool* thread_pool, in ThreadPoolWorker() function in art::ThreadPoolWorker
85 ThreadPoolWorker::~ThreadPoolWorker() { in ~ThreadPoolWorker()
102 void ThreadPoolWorker::SetPthreadPriority(int priority) { in SetPthreadPriority()
110 int ThreadPoolWorker::GetPthreadPriority() { in GetPthreadPriority()
118 void ThreadPoolWorker::Run() { in Run()
128 void* ThreadPoolWorker::Callback(void* arg) { in Callback()
129 ThreadPoolWorker* worker = reinterpret_cast<ThreadPoolWorker*>(arg); in Callback()
223 new ThreadPoolWorker(this, worker_name, worker_stack_size_)); in CreateThreads()
232 const std::vector<ThreadPoolWorker*>& AbstractThreadPool::GetWorkers() { in GetWorkers()
350 for (ThreadPoolWorker* worker : threads_) { in SetPthreadPriority()
357 for (ThreadPoolWorker* worker : threads_) { in CheckPthreadPriority()