Searched refs:SimpleThread (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/ppapi/utility/threading/
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...]
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...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsimplethread.h12 class U_EXPORT SimpleThread class
15 SimpleThread();
16 virtual ~SimpleThread();
H A Dsimplethread.cpp98 SimpleThread::SimpleThread() function in class:SimpleThread
101 SimpleThread::~SimpleThread()
105 SimpleThread::start()
109 SimpleThread::run()
113 SimpleThread::sleep(int32_t millis)
117 SimpleThread::isRunning() {
147 // class SimpleThread Windows Implementation
159 ((SimpleThread*)ar
163 SimpleThread::SimpleThread() function in class:SimpleThread
266 SimpleThread::SimpleThread() function in class:SimpleThread
339 SimpleThread::SimpleThread() function in class:SimpleThread
[all...]
H A Dtsmthred.cpp139 void SimpleThread::errorFunc() {
203 class TestThreadsThread : public SimpleThread
207 virtual void run() { SimpleThread::sleep(1000);
218 SimpleThread *threads[THREADTEST_NRTHREADS];
238 SimpleThread::sleep(100);
274 SimpleThread::sleep(500);
311 class TestMutexThread : public SimpleThread
362 SimpleThread::sleep(500);
380 SimpleThread::sleep(500);
393 SimpleThread
[all...]
/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...]
H A Dtsmthred.cpp145 void SimpleThread::errorFunc() {
218 class TestThreadsThread : public SimpleThread
222 virtual void run() { SimpleThread::sleep(1000);
239 class TestArabicShapeThreads : public SimpleThread
302 SimpleThread *threads[THREADTEST_NRTHREADS];
322 SimpleThread::sleep(100);
358 SimpleThread::sleep(500);
372 SimpleThread *threads[ARABICSHAPE_THREADTEST];
393 //SimpleThread::sleep(100);
429 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 Dnon_thread_safe_unittest.cc38 class CallDoStuffOnThread : public SimpleThread {
41 : SimpleThread("call_do_stuff_on_thread"),
56 class DeleteNonThreadSafeClassOnThread : public SimpleThread {
59 : SimpleThread("delete_non_thread_safe_class_on_thread"),
H A Dthread_checker_unittest.cc38 class CallDoStuffOnThread : public base::SimpleThread {
41 : SimpleThread("call_do_stuff_on_thread"),
56 class DeleteThreadCheckerClassOnThread : public base::SimpleThread {
59 : SimpleThread("delete_thread_checker_class_on_thread"),
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...]
H A Dsimple_thread_unittest.cc118 SimpleThread::Options options;
/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 Dnon_thread_safe_unittest.cc48 class CallDoStuffOnThread : public SimpleThread {
51 : SimpleThread("call_do_stuff_on_thread"),
66 class DeleteNonThreadSafeClassOnThread : public SimpleThread {
70 : SimpleThread("delete_non_thread_safe_class_on_thread"),
H A Dthread_checker_unittest.cc48 class CallDoStuffOnThread : public base::SimpleThread {
51 : SimpleThread("call_do_stuff_on_thread"),
66 class DeleteThreadCheckerClassOnThread : public base::SimpleThread {
70 : SimpleThread("delete_thread_checker_class_on_thread"),
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...]
H A Dthread_restrictions.h81 class SimpleThread;
188 friend class SimpleThread;
/external/chromium_org/ppapi/examples/threading/
H A Dthreading.cc15 thread_ = new pp::SimpleThread(this);
39 pp::SimpleThread* thread_;
/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...]
/external/chromium/chrome/browser/net/
H A Dchrome_net_log_unittest.cc16 class ChromeNetLogTestThread : public base::SimpleThread {
18 ChromeNetLogTestThread() : base::SimpleThread("ChromeNetLogTest"),
/external/chromium/net/tools/flip_server/
H A Dacceptor_thread.h44 class SMAcceptorThread : public base::SimpleThread,
H A Dacceptor_thread.cc25 : SimpleThread("SMAcceptorThread"),
/external/chromium_org/net/tools/flip_server/
H A Dacceptor_thread.h45 class SMAcceptorThread : public base::SimpleThread,
/external/chromium_org/ppapi/tests/
H A Dtest_message_loop.cc61 pp::SimpleThread thread(instance_);

Completed in 458 milliseconds

12