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

/art/runtime/
H A Dthread_pool.h143 friend class WorkStealingWorker;
161 friend class WorkStealingWorker;
164 class WorkStealingWorker : public ThreadPoolWorker { class in namespace:art
166 virtual ~WorkStealingWorker();
175 WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
180 DISALLOW_COPY_AND_ASSIGN(WorkStealingWorker);
196 friend class WorkStealingWorker;
H A Dthread_pool.cc204 WorkStealingWorker::WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, function in class:art::WorkStealingWorker
208 void WorkStealingWorker::Run() {
277 WorkStealingWorker::~WorkStealingWorker() {}
285 threads_.push_back(new WorkStealingWorker(this, worker_name,
299 WorkStealingWorker* worker = down_cast<WorkStealingWorker*>(threads_[steal_index_]);

Completed in 65 milliseconds