Searched defs:SimpleThread (Results 1 - 10 of 10) sorted by path

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DEventDebuggee.java37 public static final String testedThreadName = "SimpleThread";
39 private class SimpleThread extends Thread { class in class:EventDebuggee
41 public SimpleThread () { method in class:EventDebuggee.SimpleThread
46 logWriter.println("-> SimpleThread: Running...");
60 SimpleThread testThread = new SimpleThread();
62 logWriter.println("-> EventDebuggee: SimpleThread started");
68 logWriter.println("-> EventDebuggee: SimpleThread finished");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
H A DEventDebuggee.java37 static final String testedThreadName = "SimpleThread";
39 private class SimpleThread extends Thread { class in class:EventDebuggee
41 public SimpleThread () { method in class:EventDebuggee.SimpleThread
46 logWriter.println("-> SimpleThread: Running...");
60 SimpleThread testThread = new SimpleThread();
62 logWriter.println("-> EventDebuggee: SimpleThread started");
68 logWriter.println("-> EventDebuggee: SimpleThread finished");
/external/chromium_org/base/threading/
H A Dsimple_thread.cc14 SimpleThread::SimpleThread(const std::string& name_prefix) function in class:base::SimpleThread
19 SimpleThread::SimpleThread(const std::string& name_prefix, function in class:base::SimpleThread
25 SimpleThread::~SimpleThread() {
26 DCHECK(HasBeenStarted()) << "SimpleThread was never started.";
27 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
30 void SimpleThread::Start() {
38 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_EXPORT 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/chromium_org/ppapi/utility/threading/
H A Dsimple_thread.cc26 SimpleThread::ThreadFunc func;
49 SimpleThread::SimpleThread(const InstanceHandle& instance) function in class:pp::SimpleThread
56 SimpleThread::SimpleThread(const InstanceHandle& instance, function in class:pp::SimpleThread
64 SimpleThread::~SimpleThread() {
68 bool SimpleThread::Start() {
72 bool SimpleThread::Join() {
92 bool SimpleThread
[all...]
H A Dsimple_thread.h21 class SimpleThread { class in namespace:pp
31 explicit SimpleThread(const InstanceHandle& instance);
32 explicit SimpleThread(const InstanceHandle& instance, size_t stacksize);
33 ~SimpleThread();
60 SimpleThread(const SimpleThread&);
61 SimpleThread(const SimpleThread&, size_t stacksize);
62 SimpleThread& operator=(const SimpleThread
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsimplethread.cpp108 SimpleThread::SimpleThread() function in class:SimpleThread
111 SimpleThread::~SimpleThread()
115 SimpleThread::start()
119 SimpleThread::run()
123 SimpleThread::sleep(int32_t millis)
127 SimpleThread::isRunning() {
157 // class SimpleThread Windows Implementation
169 ((SimpleThread*)ar
173 SimpleThread::SimpleThread() function in class:SimpleThread
276 SimpleThread::SimpleThread() function in class:SimpleThread
349 SimpleThread::SimpleThread() function in class:SimpleThread
[all...]
H A Dsimplethread.h12 class U_EXPORT SimpleThread class
15 SimpleThread();
16 virtual ~SimpleThread();
/external/icu/icu4c/source/test/intltest/
H A Dsimplethread.cpp108 SimpleThread::SimpleThread() function in class:SimpleThread
111 SimpleThread::~SimpleThread()
115 SimpleThread::start()
119 SimpleThread::run()
123 SimpleThread::sleep(int32_t millis)
127 SimpleThread::isRunning() {
157 // class SimpleThread Windows Implementation
169 ((SimpleThread*)ar
173 SimpleThread::SimpleThread() function in class:SimpleThread
276 SimpleThread::SimpleThread() function in class:SimpleThread
349 SimpleThread::SimpleThread() function in class:SimpleThread
[all...]
H A Dsimplethread.h12 class U_EXPORT SimpleThread class
15 SimpleThread();
16 virtual ~SimpleThread();

Completed in 335 milliseconds