Home | History | Annotate | Download | only in egl

Lines Matching refs:TestThread

717 class TestThread : de::Thread
720 TestThread (const vector<TestContext*> contexts);
721 ~TestThread (void);
745 TestThread& operator= (const TestThread&);
746 TestThread (const TestThread&);
749 TestThread::TestThread (const vector<TestContext*> contexts)
762 TestThread::~TestThread (void)
767 void TestThread::start (void)
774 void TestThread::join (void)
781 void TestThread::run (void)
882 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vector<TestContext*>& contexts)
894 threads.push_back(new TestThread(threadContexts));
900 void destroyThreads (vector<TestThread*>& threads)
911 void startThreads (vector<TestThread*>& threads)
917 void joinThreads (vector<TestThread*>& threads)
923 bool threadResultsOk (const vector<TestThread*>& threads)
1034 vector<TestThread*> threads;