/external/icu4c/test/intltest/ |
D | simplethread.cpp | 106 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread 109 SimpleThread::~SimpleThread() in ~SimpleThread() 113 SimpleThread::start() in start() 117 SimpleThread::run() in run() 121 SimpleThread::sleep(int32_t millis) in sleep() 125 SimpleThread::isRunning() { in isRunning() 167 ((SimpleThread*)arg)->run(); in SimpleThreadProc() 171 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread 179 SimpleThread::~SimpleThread() in ~SimpleThread() 194 int32_t SimpleThread::start() in start() [all …]
|
D | tsmthred.cpp | 145 void SimpleThread::errorFunc() { in errorFunc() 218 class TestThreadsThread : public SimpleThread 222 virtual void run() { SimpleThread::sleep(1000); in run() 239 class TestArabicShapeThreads : public SimpleThread 302 SimpleThread *threads[THREADTEST_NRTHREADS]; in TestThreads() 322 SimpleThread::sleep(100); in TestThreads() 358 SimpleThread::sleep(500); in TestThreads() 372 SimpleThread *threads[ARABICSHAPE_THREADTEST]; in TestArabicShapingThreads() 429 SimpleThread::sleep(500); in TestArabicShapingThreads() 467 class TestMutexThread : public SimpleThread [all …]
|
D | simplethread.h | 12 class U_EXPORT SimpleThread 15 SimpleThread(); 16 virtual ~SimpleThread();
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | simplethread.cpp | 98 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread 101 SimpleThread::~SimpleThread() in ~SimpleThread() 105 SimpleThread::start() in start() 109 SimpleThread::run() in run() 113 SimpleThread::sleep(int32_t millis) in sleep() 117 SimpleThread::isRunning() { in isRunning() 159 ((SimpleThread*)arg)->run(); in SimpleThreadProc() 163 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread 171 SimpleThread::~SimpleThread() in ~SimpleThread() 186 int32_t SimpleThread::start() in start() [all …]
|
D | tsmthred.cpp | 139 void SimpleThread::errorFunc() { in errorFunc() 203 class TestThreadsThread : public SimpleThread 207 virtual void run() { SimpleThread::sleep(1000); in run() 218 SimpleThread *threads[THREADTEST_NRTHREADS]; in TestThreads() 238 SimpleThread::sleep(100); in TestThreads() 274 SimpleThread::sleep(500); in TestThreads() 311 class TestMutexThread : public SimpleThread 362 SimpleThread::sleep(500); in TestMutex() 380 SimpleThread::sleep(500); in TestMutex() 393 SimpleThread::sleep(500); in TestMutex() [all …]
|
D | simplethread.h | 12 class U_EXPORT SimpleThread 15 SimpleThread(); 16 virtual ~SimpleThread();
|
/external/chromium_org/ppapi/utility/threading/ |
D | 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&);
|
D | simple_thread.cc | 26 SimpleThread::ThreadFunc func; 49 SimpleThread::SimpleThread(const InstanceHandle& instance) in SimpleThread() function in pp::SimpleThread 56 SimpleThread::SimpleThread(const InstanceHandle& instance, in SimpleThread() function in pp::SimpleThread 64 SimpleThread::~SimpleThread() { in ~SimpleThread() 68 bool SimpleThread::Start() { in Start() 72 bool SimpleThread::Join() { in Join() 92 bool SimpleThread::StartWithFunction(ThreadFunc func, void* user_data) { in StartWithFunction()
|
/external/chromium_org/base/threading/ |
D | simple_thread.cc | 14 SimpleThread::SimpleThread(const std::string& name_prefix) in SimpleThread() function in base::SimpleThread 19 SimpleThread::SimpleThread(const std::string& name_prefix, in SimpleThread() function in base::SimpleThread 25 SimpleThread::~SimpleThread() { in ~SimpleThread() 30 void SimpleThread::Start() { in Start() 38 void SimpleThread::Join() { in Join() 45 bool SimpleThread::HasBeenStarted() { in HasBeenStarted() 50 void SimpleThread::ThreadMain() { in ThreadMain() 65 : SimpleThread(name_prefix), in DelegateSimpleThread() 72 : SimpleThread(name_prefix, options), in DelegateSimpleThread()
|
D | simple_thread.h | 58 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate { 78 explicit SimpleThread(const std::string& name_prefix); 79 SimpleThread(const std::string& name_prefix, const Options& options); 81 virtual ~SimpleThread(); 123 class BASE_EXPORT DelegateSimpleThread : public SimpleThread {
|
D | non_thread_safe_unittest.cc | 48 class CallDoStuffOnThread : public SimpleThread { 51 : SimpleThread("call_do_stuff_on_thread"), in CallDoStuffOnThread() 66 class DeleteNonThreadSafeClassOnThread : public SimpleThread { 70 : SimpleThread("delete_non_thread_safe_class_on_thread"), in DeleteNonThreadSafeClassOnThread()
|
D | thread_checker_unittest.cc | 48 class CallDoStuffOnThread : public base::SimpleThread { 51 : SimpleThread("call_do_stuff_on_thread"), in CallDoStuffOnThread() 66 class DeleteThreadCheckerClassOnThread : public base::SimpleThread { 70 : SimpleThread("delete_thread_checker_class_on_thread"), in DeleteThreadCheckerClassOnThread()
|
D | thread_restrictions.h | 83 class SimpleThread; variable 192 friend class SimpleThread; variable
|
/external/chromium/base/threading/ |
D | simple_thread.cc | 13 SimpleThread::SimpleThread(const std::string& name_prefix) in SimpleThread() function in base::SimpleThread 18 SimpleThread::SimpleThread(const std::string& name_prefix, in SimpleThread() function in base::SimpleThread 24 SimpleThread::~SimpleThread() { in ~SimpleThread() 29 void SimpleThread::Start() { in Start() 36 void SimpleThread::Join() { in Join() 43 void SimpleThread::ThreadMain() { in ThreadMain() 58 : SimpleThread(name_prefix), in DelegateSimpleThread() 65 : SimpleThread(name_prefix, options), in DelegateSimpleThread()
|
D | simple_thread.h | 58 class BASE_API SimpleThread : public PlatformThread::Delegate { 78 explicit SimpleThread(const std::string& name_prefix); 79 SimpleThread(const std::string& name_prefix, const Options& options); 81 virtual ~SimpleThread(); 117 class BASE_API DelegateSimpleThread : public SimpleThread {
|
D | non_thread_safe_unittest.cc | 38 class CallDoStuffOnThread : public SimpleThread { 41 : SimpleThread("call_do_stuff_on_thread"), in CallDoStuffOnThread() 56 class DeleteNonThreadSafeClassOnThread : public SimpleThread { 59 : SimpleThread("delete_non_thread_safe_class_on_thread"), in DeleteNonThreadSafeClassOnThread()
|
D | thread_checker_unittest.cc | 38 class CallDoStuffOnThread : public base::SimpleThread { 41 : SimpleThread("call_do_stuff_on_thread"), in CallDoStuffOnThread() 56 class DeleteThreadCheckerClassOnThread : public base::SimpleThread { 59 : SimpleThread("delete_thread_checker_class_on_thread"), in DeleteThreadCheckerClassOnThread()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
D | ThreadTest.java | 26 static class SimpleThread implements Runnable { class in ThreadTest 41 public SimpleThread(int d) { in SimpleThread() method in ThreadTest.SimpleThread 128 ct = new Thread(new SimpleThread(10)); in test_ConstructorLjava_lang_Runnable() 138 Thread st1 = new Thread(new SimpleThread(1), "SimpleThread1"); in test_ConstructorLjava_lang_RunnableLjava_lang_String() 162 st = new Thread(tg, new SimpleThread(1), "SimpleThread2"); in test_ConstructorLjava_lang_ThreadGroupLjava_lang_Runnable() 180 st = new Thread(tg, new SimpleThread(1), "SimpleThread3"); in test_ConstructorLjava_lang_ThreadGroupLjava_lang_RunnableLjava_lang_String() 213 st = new Thread(new SimpleThread(1), "SimpleThread4"); in test_ConstructorLjava_lang_ThreadGroupLjava_lang_String() 224 Thread t = new Thread(new SimpleThread(10)); in test_activeCount() 244 st = new Thread(tg, new SimpleThread(1), "SimpleThread5"); in test_checkAccess() 306 SimpleThread st1 = null; in test_enumerate$Ljava_lang_Thread() [all …]
|
/external/chromium_org/ppapi/examples/threading/ |
D | threading.cc | 15 thread_ = new pp::SimpleThread(this); in MyInstance() 39 pp::SimpleThread* thread_;
|
/external/chromium_org/mojo/system/ |
D | waiter_test_utils.h | 44 class SimpleWaiterThread : public base::SimpleThread { 65 class WaiterThread : public base::SimpleThread {
|
D | waiter_test_utils.cc | 12 : base::SimpleThread("waiter_thread"), in SimpleWaiterThread() 32 : base::SimpleThread("waiter_thread"), in WaiterThread()
|
D | message_pipe_dispatcher_unittest.cc | 384 class WriterThread : public base::SimpleThread { 390 : base::SimpleThread("writer_thread"), in WriterThread() 437 class ReaderThread : public base::SimpleThread { 442 : base::SimpleThread("reader_thread"), in ReaderThread()
|
D | dispatcher_unittest.cc | 88 class ThreadSafetyStressThread : public base::SimpleThread { 109 : base::SimpleThread("thread_safety_stress_thread"), in ThreadSafetyStressThread()
|
/external/chromium/chrome/browser/net/ |
D | chrome_net_log_unittest.cc | 16 class ChromeNetLogTestThread : public base::SimpleThread { 18 ChromeNetLogTestThread() : base::SimpleThread("ChromeNetLogTest"), in ChromeNetLogTestThread()
|
/external/chromium_org/net/tools/quic/test_tools/ |
D | server_thread.h | 18 class ServerThread : public base::SimpleThread {
|