Lines Matching refs:TestThread
717 class TestThread : de::Thread class
720 TestThread (const vector<TestContext*> contexts, const Library& egl);
721 ~TestThread (void);
746 TestThread& operator= (const TestThread&);
747 TestThread (const TestThread&);
750 TestThread::TestThread (const vector<TestContext*> contexts, const Library& egl) in TestThread() function in deqp::egl::__anon9858808f0111::TestThread
764 TestThread::~TestThread (void) in ~TestThread()
769 void TestThread::start (void) in start()
776 void TestThread::join (void) in join()
783 void TestThread::run (void) in run()
886 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vecto… in createThreads()
898 threads.push_back(new TestThread(threadContexts, egl)); in createThreads()
904 void destroyThreads (vector<TestThread*>& threads) in destroyThreads()
915 void startThreads (vector<TestThread*>& threads) in startThreads()
921 void joinThreads (vector<TestThread*>& threads) in joinThreads()
927 bool threadResultsOk (const vector<TestThread*>& threads) in threadResultsOk()
1038 vector<TestThread*> threads; in iterate()