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

  /art/runtime/
thread_pool.h 128 friend class WorkStealingWorker;
146 friend class WorkStealingWorker;
149 class WorkStealingWorker : public ThreadPoolWorker {
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;
thread_pool.cc 198 WorkStealingWorker::WorkStealingWorker(ThreadPool* thread_pool, const std::string& name,
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 208 milliseconds