HomeSort by relevance Sort by last modified time
    Searched defs:SimpleThread (Results 1 - 6 of 6) sorted by null

  /external/icu4c/test/intltest/
simplethread.h 12 class U_EXPORT SimpleThread
15 SimpleThread();
16 virtual ~SimpleThread();
simplethread.cpp 13 #include "simplethread.h"
98 SimpleThread::SimpleThread()
101 SimpleThread::~SimpleThread()
105 SimpleThread::start()
109 SimpleThread::run()
113 SimpleThread::sleep(int32_t millis)
117 SimpleThread::isRunning() {
147 // class SimpleThread Windows Implementatio
    [all...]
  /external/chromium/base/
simple_thread.cc 14 void SimpleThread::Start() {
21 void SimpleThread::Join() {
28 void SimpleThread::ThreadMain() {
41 SimpleThread::~SimpleThread() {
42 DCHECK(HasBeenStarted()) << "SimpleThread was never started.";
43 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
simple_thread.h 19 // 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
54 // This is the base SimpleThread. You can derive from it and implement the
56 class SimpleThread : public PlatformThread::Delegate {
72 // Create a SimpleThread. |options| should be used to manage any specific
76 explicit SimpleThread(const std::string& name_prefix)
79 SimpleThread(const std::string& name_prefix, const Options& options)
83 virtual ~SimpleThread();
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 27 static class SimpleThread implements Runnable {
42 public SimpleThread(int d) {
50 st = new Thread(tg, new SimpleThread(1), "SimpleThread3", 1);
61 new Thread(tg, new SimpleThread(1), "SimpleThread3",
145 st = new Thread(new SimpleThread(5));
  /external/chromium/third_party/icu/source/test/intltest/
tsmthred.cpp 145 // class SimpleThread Of course we need a thread class first..
149 class SimpleThread
152 SimpleThread();
153 virtual ~SimpleThread();
167 void SimpleThread::errorFunc() {
190 // class SimpleThread Windows Implementation
202 ((SimpleThread*)arg)->run();
206 SimpleThread::SimpleThread()
214 SimpleThread::~SimpleThread(
    [all...]

Completed in 480 milliseconds