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

  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/test/intltest/
simplethread.h 12 class U_EXPORT SimpleThread
15 SimpleThread();
16 virtual ~SimpleThread();
simplethread.cpp 22 #include "simplethread.h"
108 SimpleThread::SimpleThread()
111 SimpleThread::~SimpleThread()
115 SimpleThread::start()
119 SimpleThread::run()
123 SimpleThread::sleep(int32_t millis)
127 SimpleThread::isRunning() {
157 // class SimpleThread Windows Implementatio
    [all...]
  /external/chromium_org/ppapi/utility/threading/
simple_thread.cc 26 SimpleThread::ThreadFunc func;
49 SimpleThread::SimpleThread(const InstanceHandle& instance)
56 SimpleThread::SimpleThread(const InstanceHandle& instance,
64 SimpleThread::~SimpleThread() {
68 bool SimpleThread::Start() {
72 bool SimpleThread::Join() {
92 bool SimpleThread::StartWithFunction(ThreadFunc func, void* user_data)
    [all...]
simple_thread.h 21 class SimpleThread {
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/base/threading/
simple_thread.cc 14 SimpleThread::SimpleThread(const std::string& name_prefix)
19 SimpleThread::SimpleThread(const std::string& name_prefix,
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::Join()
    [all...]
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
56 // This is the base SimpleThread. You can derive from it and implement the
58 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
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/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
EventDebuggee.java 37 static final String testedThreadName = "SimpleThread";
39 private class SimpleThread extends Thread {
41 public 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/Events/
EventDebuggee.java 37 public static final String testedThreadName = "SimpleThread";
39 private class SimpleThread extends Thread {
41 public SimpleThread () {
46 logWriter.println("-> SimpleThread: Running...");
60 SimpleThread testThread = new SimpleThread();
62 logWriter.println("-> EventDebuggee: SimpleThread started");
68 logWriter.println("-> EventDebuggee: SimpleThread finished");
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 28 static class SimpleThread implements Runnable {
43 public SimpleThread(int d) {
51 st = new Thread(tg, new SimpleThread(1), "SimpleThread3", 1);
62 new Thread(tg, new SimpleThread(1), "SimpleThread3",
146 st = new Thread(new SimpleThread(5));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 25 static class SimpleThread implements Runnable {
40 public SimpleThread(int d) {
127 ct = new Thread(new SimpleThread(10));
137 Thread st1 = new Thread(new SimpleThread(1), "SimpleThread1");
161 st = new Thread(tg, new SimpleThread(1), "SimpleThread2");
179 st = new Thread(tg, new SimpleThread(1), "SimpleThread3");
212 st = new Thread(new SimpleThread(1), "SimpleThread4");
223 Thread t = new Thread(new SimpleThread(10));
243 st = new Thread(tg, new SimpleThread(1), "SimpleThread5");
300 SimpleThread st1 = null
    [all...]

Completed in 1146 milliseconds