Symbol: BThreadManager
headers/tools/cppunit/ThreadManager.h
108
BThreadManager<TestClass, ExpectedException>::LaunchThread(CppUnit::TestResult *result) {
headers/tools/cppunit/ThreadManager.h
113
fID = spawn_thread((thread_entry)(BThreadManager::EntryFunction),
headers/tools/cppunit/ThreadManager.h
132
BThreadManager<TestClass, ExpectedException>::EntryFunction(BThreadManager<TestClass, ExpectedException> *manager) {
headers/tools/cppunit/ThreadManager.h
139
BThreadManager<TestClass, ExpectedException>::Run(void) {
headers/tools/cppunit/ThreadManager.h
16
class CPPUNIT_API BThreadManager {
headers/tools/cppunit/ThreadManager.h
20
BThreadManager(std::string threadName, TestClass *object, ThreadMethod method, sem_id &threadSem);
headers/tools/cppunit/ThreadManager.h
21
~BThreadManager();
headers/tools/cppunit/ThreadManager.h
40
static long EntryFunction(BThreadManager<TestClass, ExpectedException>* manager);
headers/tools/cppunit/ThreadManager.h
46
BThreadManager<TestClass, ExpectedException>::BThreadManager(
headers/tools/cppunit/ThreadManager.h
63
BThreadManager<TestClass, ExpectedException>::~BThreadManager() {
headers/tools/cppunit/ThreadManager.h
70
BThreadManager<TestClass, ExpectedException>::WaitForThread() {
headers/tools/cppunit/ThreadManager.h
79
BThreadManager<TestClass, ExpectedException>::Stop() {
headers/tools/cppunit/ThreadManager.h
94
BThreadManager<TestClass, ExpectedException>::IsRunning(void) {
headers/tools/cppunit/ThreadedTestCaller.h
42
typedef std::map<std::string, BThreadManager<TestClass, ExpectedException> *> ThreadManagerMap;
headers/tools/cppunit/ThreadedTestCaller.h
95
fThreads[threadName] = new BThreadManager<TestClass, ExpectedException>(threadName, fObject, method, fThreadSem);