Lines Matching refs:wt
78 WorkerThread* wt = new WorkerThread(QoS(6));
79 bool ret = wt->Idle();
85 WorkerThread* wt = new WorkerThread(QoS(6));
87 wt->SetIdle(var);
88 EXPECT_FALSE(wt->idle);
93 WorkerThread* wt = new WorkerThread(QoS(6));
94 bool ret = wt->Exited();
100 WorkerThread* wt = new WorkerThread(QoS(6));
102 wt->SetExited(var);
103 EXPECT_FALSE(wt->exited);
108 WorkerThread* wt = new WorkerThread(QoS(6));
109 QoS ret = wt->GetQos();
114 WorkerThread* wt = new WorkerThread(QoS(6));
115 wt->Join();
120 WorkerThread* wt = new WorkerThread(QoS(6));
121 wt->Detach();
128 WorkerThread* wt = new WorkerThread(QoS(6));
129 wt->NativeConfig();
130 wt->Start(MockStart, &inc);
131 wt->Join();
133 delete wt;
139 wt = new WorkerThread(QoS(6));
140 wt->NativeConfig();
141 wt->Start(MockStart, &inc);
142 wt->Join();
144 pthread_attr_getstacksize(&wt->attr_, &stackSize);
146 delete wt;