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
51
class
ThreadPoolWorker
{
60
virtual ~
ThreadPoolWorker
();
63
ThreadPoolWorker
(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
74
DISALLOW_COPY_AND_ASSIGN(
ThreadPoolWorker
);
134
std::vector<
ThreadPoolWorker
*> threads_;
142
friend class
ThreadPoolWorker
;
164
class WorkStealingWorker : public
ThreadPoolWorker
{
thread_pool.cc
29
ThreadPoolWorker
::
ThreadPoolWorker
(ThreadPool* thread_pool, const std::string& name,
45
ThreadPoolWorker
::~
ThreadPoolWorker
() {
49
void
ThreadPoolWorker
::Run() {
59
void*
ThreadPoolWorker
::Callback(void* arg) {
60
ThreadPoolWorker
* worker = reinterpret_cast<
ThreadPoolWorker
*>(arg);
95
threads_.push_back(new
ThreadPoolWorker
(this, worker_name,
ThreadPoolWorker
::kDefaultStackSize))
[
all
...]
Completed in 196 milliseconds