Lines Matching refs:TestThread
717 class TestThread : de::Thread class
720 TestThread (const vector<TestContext*> contexts);
721 ~TestThread (void);
746 TestThread& operator= (const TestThread&);
747 TestThread (const TestThread&);
750 TestThread::TestThread (const vector<TestContext*> contexts) in TestThread() function in deqp::egl::__anon5a2e14880111::TestThread
763 TestThread::~TestThread (void) in ~TestThread()
768 void TestThread::log (TestLog& testLog) in log()
774 void TestThread::start (void) in start()
781 void TestThread::join (void) in join()
788 void TestThread::run (void) in run()
889 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vecto… in createThreads()
901 threads.push_back(new TestThread(threadContexts)); in createThreads()
907 void destroyThreads (vector<TestThread*>& threads) in destroyThreads()
918 void startThreads (vector<TestThread*>& threads) in startThreads()
924 void joinThreads (vector<TestThread*>& threads) in joinThreads()
930 bool threadResultsOk (const vector<TestThread*>& threads) in threadResultsOk()
1041 vector<TestThread*> threads; in iterate()