Home
last modified time | relevance | path

Searched refs:SimpleThread (Results 1 – 22 of 22) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dsimplethread.cpp138 ((SimpleThread*)arg)->run(); in SimpleThreadProc()
142 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread
150 SimpleThread::~SimpleThread() in ~SimpleThread()
165 int32_t SimpleThread::start() in start()
195 void SimpleThread::join() { in join()
223 SimpleThread *This = (SimpleThread *)arg; in SimpleThreadProc()
228 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread
234 SimpleThread::~SimpleThread() in ~SimpleThread()
241 int32_t SimpleThread::start() in start()
275 void SimpleThread::join() { in join()
[all …]
Dsimplethread.h14 class U_EXPORT SimpleThread
17 SimpleThread();
18 virtual ~SimpleThread();
60 SimpleThread **fThreads;
Dtsmthred.cpp153 class TestThreadsThread : public SimpleThread
169 SimpleThread *threads[THREADTEST_NRTHREADS]; in TestThreads()
219 class TestArabicShapeThreads : public SimpleThread
311 class TestMutexThread : public SimpleThread
590 class FormatThreadTest : public SimpleThread
599 : SimpleThread(), in FormatThreadTest()
893 class CollatorThreadTest : public SimpleThread
901 CollatorThreadTest() : SimpleThread(), in CollatorThreadTest()
1110 class StringThreadTest2 : public SimpleThread
1118 : SimpleThread(), in StringThreadTest2()
[all …]
Drbbimonkeytest.h200 class RBBIMonkeyThread: public SimpleThread {
/external/libchrome/base/threading/
Dsimple_thread.cc14 SimpleThread::SimpleThread(const std::string& name_prefix) in SimpleThread() function in base::SimpleThread
15 : SimpleThread(name_prefix, Options()) {} in SimpleThread()
17 SimpleThread::SimpleThread(const std::string& name_prefix, in SimpleThread() function in base::SimpleThread
24 SimpleThread::~SimpleThread() { in ~SimpleThread()
30 void SimpleThread::Start() { in Start()
43 void SimpleThread::Join() { in Join()
52 bool SimpleThread::HasBeenStarted() { in HasBeenStarted()
57 void SimpleThread::ThreadMain() { in ThreadMain()
78 : SimpleThread(name_prefix, options), in DelegateSimpleThread()
Dsimple_thread.h60 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
88 explicit SimpleThread(const std::string& name_prefix);
89 SimpleThread(const std::string& name_prefix, const Options& options);
91 ~SimpleThread() override;
120 DISALLOW_COPY_AND_ASSIGN(SimpleThread);
128 class BASE_EXPORT DelegateSimpleThread : public SimpleThread {
Dnon_thread_safe_unittest.cc43 class CallDoStuffOnThread : public SimpleThread {
46 : SimpleThread("call_do_stuff_on_thread"), in CallDoStuffOnThread()
59 class DeleteNonThreadSafeClassOnThread : public SimpleThread {
63 : SimpleThread("delete_non_thread_safe_class_on_thread"), in DeleteNonThreadSafeClassOnThread()
Dthread_checker_unittest.cc22 class RunCallbackThread : public SimpleThread {
25 : SimpleThread("RunCallbackThread"), callback_(callback) {} in RunCallbackThread()
Dsimple_thread_unittest.cc164 SimpleThread::Options options; in TEST()
184 SimpleThread::Options options; in TEST()
Dthread_restrictions.h94 class SimpleThread; variable
193 friend class SimpleThread; variable
Dsequenced_worker_pool.cc265 class SequencedWorkerPool::Worker : public SimpleThread {
590 : SimpleThread(prefix + StringPrintf("Worker%d", thread_number)), in Worker()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
DEventDebuggee.java39 private class SimpleThread extends Thread { class in EventDebuggee
41 public SimpleThread () { in SimpleThread() method in EventDebuggee.SimpleThread
62 SimpleThread testThread = new SimpleThread(); in run()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DEventDebuggee.java39 private class SimpleThread extends Thread { class in EventDebuggee
41 public SimpleThread () { in SimpleThread() method in EventDebuggee.SimpleThread
62 SimpleThread testThread = new SimpleThread(); in run()
/external/libchrome/base/task_scheduler/
Dscheduler_lock_unittest.cc24 class BasicLockTestThread : public SimpleThread {
27 : SimpleThread("BasicLockTestThread"), in BasicLockTestThread()
54 class BasicLockAcquireAndWaitThread : public SimpleThread {
57 : SimpleThread("BasicLockAcquireAndWaitThread"), in BasicLockAcquireAndWaitThread()
/external/libmojo/mojo/edk/system/
Dwaiter_test_utils.h46 class SimpleWaiterThread : public base::SimpleThread {
68 class WaiterThread : public base::SimpleThread {
Dwaiter_test_utils.cc12 : base::SimpleThread("waiter_thread"), result_(result), context_(context) { in SimpleWaiterThread()
34 : base::SimpleThread("waiter_thread"), in WaiterThread()
Dwaiter_unittest.cc26 class WaitingThread : public base::SimpleThread {
29 : base::SimpleThread("waiting_thread"), in WaitingThread()
/external/libmojo/mojo/public/c/system/tests/
Dcore_perftest.cc26 class MessagePipeWriterThread : public base::SimpleThread {
29 : SimpleThread("MessagePipeWriterThread"), in MessagePipeWriterThread()
67 class MessagePipeReaderThread : public base::SimpleThread {
70 : SimpleThread("MessagePipeReaderThread"), in MessagePipeReaderThread()
/external/libchrome/base/
Dsequence_checker_unittest.cc29 class RunCallbackThread : public SimpleThread {
32 : SimpleThread("RunCallbackThread"), callback_(callback) { in RunCallbackThread()
/external/libchrome/base/metrics/
Dpersistent_memory_allocator_unittest.cc284 class AllocatorThread : public SimpleThread {
290 : SimpleThread(name, Options()), in AllocatorThread()
356 class CounterThread : public SimpleThread {
363 : SimpleThread(name, Options()), in CounterThread()
/external/libchrome/base/debug/
Dactivity_tracker_unittest.cc313 class SimpleActivityThread : public SimpleThread {
319 : SimpleThread(name, Options()), in SimpleActivityThread()
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc3028 TEST(MemorySanitizer, SimpleThread) { in TEST() argument