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

/art/runtime/
H A Dthread_pool.h38 class ThreadPoolWorker { class in namespace:art
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 {
H A Dthread_pool.cc28 ThreadPoolWorker::ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, function in class:art::ThreadPoolWorker
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
[all...]

Completed in 41 milliseconds