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

/art/runtime/
H A Dthread_pool.cc42 ThreadPoolWorker::ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, function in class:art::ThreadPoolWorker
66 ThreadPoolWorker::~ThreadPoolWorker() {
70 void ThreadPoolWorker::SetPthreadPriority(int priority) {
83 void ThreadPoolWorker::Run() {
93 void* ThreadPoolWorker::Callback(void* arg) {
94 ThreadPoolWorker* worker = reinterpret_cast<ThreadPoolWorker*>(arg);
142 new ThreadPoolWorker(thi
[all...]
H A Dthread_pool.h51 class ThreadPoolWorker { class in namespace:art
60 virtual ~ThreadPoolWorker();
68 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
80 DISALLOW_COPY_AND_ASSIGN(ThreadPoolWorker);
91 const std::vector<ThreadPoolWorker*>& GetWorkers() const {
162 std::vector<ThreadPoolWorker*> threads_;
171 friend class ThreadPoolWorker;

Completed in 264 milliseconds