Searched defs:SimpleThread (Results 1 - 5 of 5) sorted by relevance

/external/icu4c/test/intltest/
H A Dsimplethread.h12 class U_EXPORT SimpleThread class
15 SimpleThread();
16 virtual ~SimpleThread();
H A Dsimplethread.cpp106 SimpleThread::SimpleThread() function in class: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*)ar
171 SimpleThread::SimpleThread() function in class:SimpleThread
274 SimpleThread::SimpleThread() function in class:SimpleThread
347 SimpleThread::SimpleThread() function in class:SimpleThread
[all...]
/external/chromium/base/threading/
H A Dsimple_thread.cc13 SimpleThread::SimpleThread(const std::string& name_prefix) function in class:base::SimpleThread
18 SimpleThread::SimpleThread(const std::string& name_prefix, function in class:base::SimpleThread
24 SimpleThread::~SimpleThread() {
25 DCHECK(HasBeenStarted()) << "SimpleThread was never started.";
26 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
29 void SimpleThread::Start() {
36 void SimpleThread
[all...]
H A Dsimple_thread.h19 // resources. You are also responsible for destructing the SimpleThread object.
20 // It is invalid to destroy a SimpleThread while it is running, or without
24 // Thread Safety: A SimpleThread is not completely thread safe. It is safe to
37 // // The SimpleThread object is still valid, however you may not call Join
56 // This is the base SimpleThread. You can derive from it and implement the
58 class BASE_API SimpleThread : public PlatformThread::Delegate { class in namespace:base
74 // Create a SimpleThread. |options| should be used to manage any specific
78 explicit SimpleThread(const std::string& name_prefix);
79 SimpleThread(const std::string& name_prefix, const Options& options);
81 virtual ~SimpleThread();
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DThreadTest.java26 static class SimpleThread implements Runnable { class in class:ThreadTest
41 public SimpleThread(int d) { method in class:ThreadTest.SimpleThread
128 ct = new Thread(new SimpleThread(10));
138 Thread st1 = new Thread(new SimpleThread(1), "SimpleThread1");
162 st = new Thread(tg, new SimpleThread(1), "SimpleThread2");
180 st = new Thread(tg, new SimpleThread(1), "SimpleThread3");
213 st = new Thread(new SimpleThread(1), "SimpleThread4");
224 Thread t = new Thread(new SimpleThread(10));
244 st = new Thread(tg, new SimpleThread(1), "SimpleThread5");
306 SimpleThread st
[all...]

Completed in 150 milliseconds