OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadPoolWorker
(Results
1 - 2
of
2
) sorted by null
/art/runtime/
thread_pool.h
38
class
ThreadPoolWorker
{
46
virtual ~
ThreadPoolWorker
();
49
ThreadPoolWorker
(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
60
DISALLOW_COPY_AND_ASSIGN(
ThreadPoolWorker
);
119
std::vector<
ThreadPoolWorker
*> threads_;
127
friend class
ThreadPoolWorker
;
149
class WorkStealingWorker : public
ThreadPoolWorker
{
thread_pool.cc
28
ThreadPoolWorker
::
ThreadPoolWorker
(ThreadPool* thread_pool, const std::string& name,
41
ThreadPoolWorker
::~
ThreadPoolWorker
() {
45
void
ThreadPoolWorker
::Run() {
55
void*
ThreadPoolWorker
::Callback(void* arg) {
56
ThreadPoolWorker
* worker = reinterpret_cast<
ThreadPoolWorker
*>(arg);
89
threads_.push_back(new
ThreadPoolWorker
(this, name,
ThreadPoolWorker
::kDefaultStackSize))
[
all
...]
Completed in 1211 milliseconds