Home | History | Annotate | Download | only in intltest

Lines Matching defs:SimpleThread

22 #include "simplethread.h"
106 SimpleThread::SimpleThread()
109 SimpleThread::~SimpleThread()
113 SimpleThread::start()
117 SimpleThread::run()
121 SimpleThread::sleep(int32_t millis)
125 SimpleThread::isRunning() {
155 // class SimpleThread Windows Implementation
167 ((SimpleThread*)arg)->run();
171 SimpleThread::SimpleThread()
179 SimpleThread::~SimpleThread()
194 int32_t SimpleThread::start()
224 UBool SimpleThread::isRunning() {
226 // Test whether the thread associated with the SimpleThread object is
256 void SimpleThread::sleep(int32_t millis)
263 // class SimpleThread NULL Implementation
274 SimpleThread::SimpleThread()
277 SimpleThread::~SimpleThread()
281 SimpleThread::start()
285 SimpleThread::run()
289 SimpleThread::sleep(int32_t millis)
293 SimpleThread::isRunning() {
302 // class SimpleThread POSIX implementation
307 // The function SimpleThread::isRunning() is used for this purpose.
334 SimpleThread *This = (SimpleThread *)arg;
347 SimpleThread::SimpleThread()
355 SimpleThread::~SimpleThread()
365 int32_t SimpleThread::start()
413 SimpleThread::isRunning() {
426 void SimpleThread::sleep(int32_t millis)
462 class ThreadWithStatus : public SimpleThread
472 SimpleThread::errorFunc();