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

  /art/runtime/
thread_pool.h 38 class ThreadPoolWorker {
47 virtual ~ThreadPoolWorker();
50 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
61 DISALLOW_COPY_AND_ASSIGN(ThreadPoolWorker);
121 std::vector<ThreadPoolWorker*> threads_;
129 friend class ThreadPoolWorker;
151 class WorkStealingWorker : public ThreadPoolWorker {
thread_pool.cc 28 ThreadPoolWorker::ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name,
44 ThreadPoolWorker::~ThreadPoolWorker() {
48 void ThreadPoolWorker::Run() {
58 void* ThreadPoolWorker::Callback(void* arg) {
59 ThreadPoolWorker* worker = reinterpret_cast<ThreadPoolWorker*>(arg);
93 threads_.push_back(new ThreadPoolWorker(this, name, ThreadPoolWorker::kDefaultStackSize))
    [all...]

Completed in 41 milliseconds