Symbol: addThread
headers/tools/cppunit/ThreadedTestCaller.h
35
void addThread(std::string threadName, ThreadMethod method);
src/tests/ExampleTest.cpp
30
caller->addThread("A", &ExampleTest::TestFunc1);
src/tests/ExampleTest.cpp
31
caller->addThread("B", &ExampleTest::TestFunc2);
src/tests/ExampleTest.cpp
32
caller->addThread("C", &ExampleTest::TestFunc3);
src/tests/ExampleTest.cpp
38
caller->addThread("Thread1", &ExampleTest::TestFunc1);
src/tests/ExampleTest.cpp
39
caller->addThread("Thread2", &ExampleTest::TestFunc1);
src/tests/ExampleTest.cpp
40
caller->addThread("Thread3", &ExampleTest::TestFunc1);
src/tests/ExampleTest.cpp
46
caller->addThread("GoodThread1", &ExampleTest::TestFunc1);
src/tests/ExampleTest.cpp
47
caller->addThread("GoodThread2", &ExampleTest::TestFunc2);
src/tests/ExampleTest.cpp
48
caller->addThread("BadThread", &ExampleTest::FailureFunc);
src/tests/kits/app/bmessagequeue/AddMessageTest1.cpp
117
testCaller->addThread("A", &AddMessageTest1::PerformTest);
src/tests/kits/app/bmessagequeue/AddMessageTest2.cpp
109
testCaller->addThread("A", &AddMessageTest2::PerformTest);
src/tests/kits/app/bmessagequeue/ConcurrencyTest1.cpp
214
threadedTest1->addThread("A", &ConcurrencyTest1::TestThread1);
src/tests/kits/app/bmessagequeue/ConcurrencyTest1.cpp
215
threadedTest1->addThread("B", &ConcurrencyTest1::TestThread2);
src/tests/kits/app/bmessagequeue/ConcurrencyTest1.cpp
216
threadedTest1->addThread("C", &ConcurrencyTest1::TestThread3);
src/tests/kits/app/bmessagequeue/ConcurrencyTest1.cpp
220
threadedTest2->addThread("A", &ConcurrencyTest1::TestThread1);
src/tests/kits/app/bmessagequeue/ConcurrencyTest1.cpp
221
threadedTest2->addThread("B", &ConcurrencyTest1::TestThread2);
src/tests/kits/app/bmessagequeue/ConcurrencyTest1.cpp
222
threadedTest2->addThread("C", &ConcurrencyTest1::TestThread3);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
254
threadedTest1->addThread("A", &ConcurrencyTest2::TestThread1);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
255
threadedTest1->addThread("B", &ConcurrencyTest2::TestThread2);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
256
threadedTest1->addThread("C", &ConcurrencyTest2::TestThread3);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
257
threadedTest1->addThread("D", &ConcurrencyTest2::TestThread4);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
258
threadedTest1->addThread("E", &ConcurrencyTest2::TestThread5);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
262
threadedTest2->addThread("A", &ConcurrencyTest2::TestThread1);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
263
threadedTest2->addThread("B", &ConcurrencyTest2::TestThread2);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
264
threadedTest2->addThread("C", &ConcurrencyTest2::TestThread3);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
265
threadedTest2->addThread("D", &ConcurrencyTest2::TestThread4);
src/tests/kits/app/bmessagequeue/ConcurrencyTest2.cpp
266
threadedTest2->addThread("E", &ConcurrencyTest2::TestThread5);
src/tests/kits/app/bmessagequeue/FindMessageTest1.cpp
117
testCaller->addThread("A", &FindMessageTest1::PerformTest);
src/tests/kits/app/bmessenger/LockTargetTester.cpp
245
caller4->addThread("A", &LockTargetTester::LockTargetTest4A);
src/tests/kits/app/bmessenger/LockTargetTester.cpp
246
caller4->addThread("B", &LockTargetTester::LockTargetTest4B);
src/tests/kits/app/bmessenger/LockTargetTester.cpp
262
caller5->addThread("A", &LockTargetTester::LockTargetTest5A);
src/tests/kits/app/bmessenger/LockTargetTester.cpp
263
caller5->addThread("B", &LockTargetTester::LockTargetTest5B);
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
325
caller4->addThread("A",
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
327
caller4->addThread("B",
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
337
caller5->addThread("A",
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
339
caller5->addThread("B",
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
356
caller6->addThread("A",
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
358
caller6->addThread("B",
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
375
caller7->addThread("A",
src/tests/kits/app/bmessenger/LockTargetWithTimeoutTester.cpp
377
caller7->addThread("B",
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
443
testCaller->addThread(
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
445
testCaller->addThread("GetTest", &HttpIntegrationTest::GetTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
446
testCaller->addThread("GetWithBufferTest", &HttpIntegrationTest::GetWithBufferTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
447
testCaller->addThread("HeadTest", &HttpIntegrationTest::HeadTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
448
testCaller->addThread("NoContentTest", &HttpIntegrationTest::NoContentTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
449
testCaller->addThread("AutoRedirectTest", &HttpIntegrationTest::AutoRedirectTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
450
testCaller->addThread("BasicAuthTest", &HttpIntegrationTest::BasicAuthTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
451
testCaller->addThread("StopOnErrorTest", &HttpIntegrationTest::StopOnErrorTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
452
testCaller->addThread("RequestCancelTest", &HttpIntegrationTest::RequestCancelTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
453
testCaller->addThread("PostTest", &HttpIntegrationTest::PostTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
468
testCaller->addThread(
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
470
testCaller->addThread("GetTest", &HttpIntegrationTest::GetTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
471
testCaller->addThread("GetWithBufferTest", &HttpIntegrationTest::GetWithBufferTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
472
testCaller->addThread("HeadTest", &HttpIntegrationTest::HeadTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
473
testCaller->addThread("NoContentTest", &HttpIntegrationTest::NoContentTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
474
testCaller->addThread("AutoRedirectTest", &HttpIntegrationTest::AutoRedirectTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
478
testCaller->addThread("StopOnErrorTest", &HttpIntegrationTest::StopOnErrorTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
479
testCaller->addThread("RequestCancelTest", &HttpIntegrationTest::RequestCancelTest);
src/tests/kits/net/netservices2/HttpProtocolTest.cpp
480
testCaller->addThread("PostTest", &HttpIntegrationTest::PostTest);
src/tests/kits/net/service/HttpTest.cpp
165
testCaller.addThread("GetTest", &T::GetTest);
src/tests/kits/net/service/HttpTest.cpp
166
testCaller.addThread("HeadTest", &T::HeadTest);
src/tests/kits/net/service/HttpTest.cpp
167
testCaller.addThread("NoContentTest", &T::NoContentTest);
src/tests/kits/net/service/HttpTest.cpp
168
testCaller.addThread("UploadTest", &T::UploadTest);
src/tests/kits/net/service/HttpTest.cpp
169
testCaller.addThread("BasicAuthTest", &T::AuthBasicTest);
src/tests/kits/net/service/HttpTest.cpp
170
testCaller.addThread("DigestAuthTest", &T::AuthDigestTest);
src/tests/kits/net/service/HttpTest.cpp
171
testCaller.addThread("AutoRedirectTest", &T::AutoRedirectTest);
src/tests/kits/net/service/HttpTest.cpp
573
httpTestCaller->addThread("ProxyTest", &HttpTest::ProxyTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
173
caller->addThread("WR", &MemoryRingIOTest::WriteTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
174
caller->addThread("RD", &MemoryRingIOTest::ReadTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
180
caller->addThread("WR", &MemoryRingIOTest::WriteTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
181
caller->addThread("RD", &MemoryRingIOTest::ReadTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
187
caller->addThread("WR", &MemoryRingIOTest::WriteTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
188
caller->addThread("RD", &MemoryRingIOTest::ReadTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
195
caller->addThread("WR #1", &MemoryRingIOTest::BusyWriterTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
196
caller->addThread("WR #2", &MemoryRingIOTest::BusyWriterTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
197
caller->addThread("WR #3", &MemoryRingIOTest::BusyWriterTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
198
caller->addThread("RD", &MemoryRingIOTest::_DisableWriteOnFullBuffer);
src/tests/kits/shared/MemoryRingIOTest.cpp
205
caller->addThread("RD #1", &MemoryRingIOTest::BusyReaderTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
206
caller->addThread("RD #2", &MemoryRingIOTest::BusyReaderTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
207
caller->addThread("RD #3", &MemoryRingIOTest::BusyReaderTest);
src/tests/kits/shared/MemoryRingIOTest.cpp
208
caller->addThread("WR", &MemoryRingIOTest::_DisableWriteOnEmptyBuffer);
src/tests/kits/support/AutolockTest.cpp
132
threadedTest->addThread("A", &AutolockLockerTest::Lock_Locker_MatchesThread);
src/tests/kits/support/AutolockTest.cpp
133
threadedTest->addThread("B", &AutolockLockerTest::Construct_AutolockPtr_LocksLocker);
src/tests/kits/support/AutolockTest.cpp
134
threadedTest->addThread("C", &AutolockLockerTest::Construct_AutolockRef_LocksLocker);
src/tests/kits/support/AutolockTest.cpp
201
threadedTest->addThread("A", &AutolockLooperTest::Construct_AutolockPtr_LocksLooper);
src/tests/kits/support/BlockCacheConcurrencyTest.cpp
299
threadedTest->addThread("A", &BlockCacheConcurrencyTest::TestThreadObj);
src/tests/kits/support/BlockCacheConcurrencyTest.cpp
300
threadedTest->addThread("B", &BlockCacheConcurrencyTest::TestThreadObj);
src/tests/kits/support/BlockCacheConcurrencyTest.cpp
301
threadedTest->addThread("C", &BlockCacheConcurrencyTest::TestThreadObj);
src/tests/kits/support/BlockCacheConcurrencyTest.cpp
302
threadedTest->addThread("D", &BlockCacheConcurrencyTest::TestThreadMalloc);
src/tests/kits/support/BlockCacheConcurrencyTest.cpp
303
threadedTest->addThread("E", &BlockCacheConcurrencyTest::TestThreadMalloc);
src/tests/kits/support/BlockCacheConcurrencyTest.cpp
304
threadedTest->addThread("F", &BlockCacheConcurrencyTest::TestThreadMalloc);
src/tests/kits/support/LockerConcurrencyTest.cpp
203
simpleBenaphoreCaller->addThread("A", &LockerConcurrencyTest::SimpleLockingLoop);
src/tests/kits/support/LockerConcurrencyTest.cpp
204
simpleBenaphoreCaller->addThread("B", &LockerConcurrencyTest::SimpleLockingLoop);
src/tests/kits/support/LockerConcurrencyTest.cpp
205
simpleBenaphoreCaller->addThread("C", &LockerConcurrencyTest::SimpleLockingLoop);
src/tests/kits/support/LockerConcurrencyTest.cpp
212
simpleSemaphoreCaller->addThread("A", &LockerConcurrencyTest::SimpleLockingLoop);
src/tests/kits/support/LockerConcurrencyTest.cpp
213
simpleSemaphoreCaller->addThread("B", &LockerConcurrencyTest::SimpleLockingLoop);
src/tests/kits/support/LockerConcurrencyTest.cpp
214
simpleSemaphoreCaller->addThread("C", &LockerConcurrencyTest::SimpleLockingLoop);
src/tests/kits/support/LockerConcurrencyTest.cpp
221
timeoutBenaphoreCaller->addThread("Acquire", &LockerConcurrencyTest::AcquireThread);
src/tests/kits/support/LockerConcurrencyTest.cpp
222
timeoutBenaphoreCaller->addThread("Timeout1", &LockerConcurrencyTest::TimeoutThread);
src/tests/kits/support/LockerConcurrencyTest.cpp
223
timeoutBenaphoreCaller->addThread("Timeout2", &LockerConcurrencyTest::TimeoutThread);
src/tests/kits/support/LockerConcurrencyTest.cpp
230
timeoutSemaphoreCaller->addThread("Acquire", &LockerConcurrencyTest::AcquireThread);
src/tests/kits/support/LockerConcurrencyTest.cpp
231
timeoutSemaphoreCaller->addThread("Timeout1", &LockerConcurrencyTest::TimeoutThread);
src/tests/kits/support/LockerConcurrencyTest.cpp
232
timeoutSemaphoreCaller->addThread("Timeout2", &LockerConcurrencyTest::TimeoutThread);
src/tests/kits/support/LockerDestructionTest.cpp
180
simpleBenaphoreCaller->addThread("Waiter", &LockerDestructionTest::SimpleWaiterThread);
src/tests/kits/support/LockerDestructionTest.cpp
181
simpleBenaphoreCaller->addThread("Deleter", &LockerDestructionTest::SimpleDeleterThread);
src/tests/kits/support/LockerDestructionTest.cpp
188
simpleSemaphoreCaller->addThread("Waiter", &LockerDestructionTest::SimpleWaiterThread);
src/tests/kits/support/LockerDestructionTest.cpp
189
simpleSemaphoreCaller->addThread("Deleter", &LockerDestructionTest::SimpleDeleterThread);
src/tests/kits/support/LockerDestructionTest.cpp
196
timeoutBenaphoreCaller->addThread("Waiter", &LockerDestructionTest::TimeoutWaiterThread);
src/tests/kits/support/LockerDestructionTest.cpp
197
timeoutBenaphoreCaller->addThread("Deleter", &LockerDestructionTest::TimeoutDeleterThread);
src/tests/kits/support/LockerDestructionTest.cpp
204
timeoutSemaphoreCaller->addThread("Waiter", &LockerDestructionTest::TimeoutWaiterThread);
src/tests/kits/support/LockerDestructionTest.cpp
205
timeoutSemaphoreCaller->addThread("Deleter", &LockerDestructionTest::TimeoutDeleterThread);
src/tests/kits/support/LockerLockCountTest.cpp
218
caller1->addThread("A", &LockerLockCountTest::TestThread1);
src/tests/kits/support/LockerLockCountTest.cpp
219
caller1->addThread("B", &LockerLockCountTest::TestThread2);
src/tests/kits/support/LockerLockCountTest.cpp
220
caller1->addThread("C", &LockerLockCountTest::TestThread3);
src/tests/kits/support/LockerLockCountTest.cpp
227
caller2->addThread("A", &LockerLockCountTest::TestThread1);
src/tests/kits/support/LockerLockCountTest.cpp
228
caller2->addThread("B", &LockerLockCountTest::TestThread2);
src/tests/kits/support/LockerLockCountTest.cpp
229
caller2->addThread("C", &LockerLockCountTest::TestThread3);