HomeSort by relevance Sort by last modified time
    Searched refs:SimpleThread (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/ppapi/utility/threading/
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...]
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...]
  /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...]
tsmthred.cpp 13 #include "simplethread.h"
139 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)
    [all...]
  /external/icu4c/test/intltest/
simplethread.h 12 class U_EXPORT SimpleThread
15 SimpleThread();
16 virtual ~SimpleThread();
simplethread.cpp 22 #include "simplethread.h"
106 SimpleThread::SimpleThread()
109 SimpleThread::~SimpleThread()
113 SimpleThread::start()
117 SimpleThread::run()
121 SimpleThread::sleep(int32_t millis)
125 SimpleThread::isRunning() {
155 // class SimpleThread Windows Implementatio
    [all...]
tsmthred.cpp 13 #include "simplethread.h"
145 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)
    [all...]
  /external/chromium/base/threading/
simple_thread.cc 13 SimpleThread::SimpleThread(const std::string& name_prefix)
18 SimpleThread::SimpleThread(const std::string& name_prefix,
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::Join()
    [all...]
non_thread_safe_unittest.cc 38 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"),
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_API 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...]
thread_checker_unittest.cc 38 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"),
  /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...]
non_thread_safe_unittest.cc 48 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"),
thread_checker_unittest.cc 48 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"),
thread_restrictions.h 83 class SimpleThread;
192 friend class SimpleThread;
  /external/chromium_org/mojo/system/
waiter_test_utils.cc 12 : base::SimpleThread("waiter_thread"),
32 : base::SimpleThread("waiter_thread"),
waiter_test_utils.h 44 class SimpleWaiterThread : public base::SimpleThread {
65 class WaiterThread : public base::SimpleThread {
  /external/chromium_org/ppapi/examples/threading/
threading.cc 15 thread_ = new pp::SimpleThread(this);
39 pp::SimpleThread* thread_;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 26 static class SimpleThread implements Runnable {
41 public SimpleThread(int d) {
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 st1 = null
    [all...]
  /external/chromium/chrome/browser/net/
chrome_net_log_unittest.cc 16 class ChromeNetLogTestThread : public base::SimpleThread {
18 ChromeNetLogTestThread() : base::SimpleThread("ChromeNetLogTest"),
  /external/chromium_org/net/tools/quic/test_tools/
server_thread.h 18 class ServerThread : public base::SimpleThread {
27 // SimpleThread implementation.
  /external/chromium/net/tools/flip_server/
acceptor_thread.h 44 class SMAcceptorThread : public base::SimpleThread,
  /external/chromium_org/net/tools/flip_server/
acceptor_thread.h 45 class SMAcceptorThread : public base::SimpleThread,

Completed in 452 milliseconds

1 2