Home | History | Annotate | Download | only in cpp

Lines Matching full:workerthread

34 void * WorkerThread::Work(void *param) {
35 WorkerThread *t = (WorkerThread *)param;
42 bool WorkerThread::isRunning() {
43 DBG("WorkerThread::isRunning E");
45 DBG("WorkerThread::isRunning X ret_value=%d", ret_value);
49 WorkerThread::WorkerThread() {
50 DBG("WorkerThread::WorkerThread E");
54 DBG("WorkerThread::WorkerThread X");
57 WorkerThread::~WorkerThread() {
58 DBG("WorkerThread::~WorkerThread E");
61 DBG("WorkerThread::~WorkerThread X");
65 bool WorkerThread::BeginStopping() {
66 DBG("WorkerThread::BeginStopping E");
68 DBG("WorkerThread::BeginStopping X ret_value=%d", ret_value);
73 void WorkerThread::WaitUntilStopped() {
74 DBG("WorkerThread::WaitUntilStopped E");
79 DBG("WorkerThread::WaitUntilStopped X");
82 void WorkerThread::Stop() {
83 DBG("WorkerThread::Stop E");
87 DBG("WorkerThread::Stop X");
90 int WorkerThread::Run(void *workerParam) {
91 DBG("WorkerThread::Run E workerParam=%p", workerParam);
109 (void * (*)(void *))&WorkerThread::Work, this);
120 DBG("WorkerThread::Run X workerParam=%p", workerParam);
125 class WorkerQueueThread : public WorkerThread {
313 class TesterThread : public WorkerThread {