HomeSort by relevance Sort by last modified time
    Searched refs:WorkStealingWorker (Results 1 - 2 of 2) sorted by null

  /art/runtime/
thread_pool.h 130 friend class WorkStealingWorker;
148 friend class WorkStealingWorker;
151 class WorkStealingWorker : public ThreadPoolWorker {
153 virtual ~WorkStealingWorker();
162 WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
167 DISALLOW_COPY_AND_ASSIGN(WorkStealingWorker);
183 friend class WorkStealingWorker;
thread_pool.cc 202 WorkStealingWorker::WorkStealingWorker(ThreadPool* thread_pool, const std::string& name,
206 void WorkStealingWorker::Run() {
275 WorkStealingWorker::~WorkStealingWorker() {}
283 threads_.push_back(new WorkStealingWorker(this, name, ThreadPoolWorker::kDefaultStackSize));
296 WorkStealingWorker* worker = down_cast<WorkStealingWorker*>(threads_[steal_index_]);

Completed in 74 milliseconds