Searched refs:WorkStealingWorker (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dthread_pool.h128 friend class WorkStealingWorker;
146 friend class WorkStealingWorker;
149 class WorkStealingWorker : public ThreadPoolWorker { class in namespace:art
151 virtual ~WorkStealingWorker();
160 WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
165 DISALLOW_COPY_AND_ASSIGN(WorkStealingWorker);
181 friend class WorkStealingWorker;
H A Dthread_pool.cc198 WorkStealingWorker::WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, function in class:art::WorkStealingWorker
202 void WorkStealingWorker::Run() {
271 WorkStealingWorker::~WorkStealingWorker() {}
279 threads_.push_back(new WorkStealingWorker(this, name, ThreadPoolWorker::kDefaultStackSize));
292 WorkStealingWorker* worker = down_cast<WorkStealingWorker*>(threads_[steal_index_]);

Completed in 96 milliseconds