Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/icu/source/test/intltest/
Dsimplethread.cpp108 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread
111 SimpleThread::~SimpleThread() in ~SimpleThread()
115 SimpleThread::start() in start()
119 SimpleThread::run() in run()
123 SimpleThread::sleep(int32_t millis) in sleep()
127 SimpleThread::isRunning() { in isRunning()
169 ((SimpleThread*)arg)->run(); in SimpleThreadProc()
173 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread
181 SimpleThread::~SimpleThread() in ~SimpleThread()
196 int32_t SimpleThread::start() in start()
[all …]
Dsimplethread.h12 class U_EXPORT SimpleThread
15 SimpleThread();
16 virtual ~SimpleThread();
Dtsmthred.cpp145 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 …]
/external/icu/icu4c/source/test/intltest/
Dsimplethread.cpp108 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread
111 SimpleThread::~SimpleThread() in ~SimpleThread()
115 SimpleThread::start() in start()
119 SimpleThread::run() in run()
123 SimpleThread::sleep(int32_t millis) in sleep()
127 SimpleThread::isRunning() { in isRunning()
169 ((SimpleThread*)arg)->run(); in SimpleThreadProc()
173 SimpleThread::SimpleThread() in SimpleThread() function in SimpleThread
181 SimpleThread::~SimpleThread() in ~SimpleThread()
196 int32_t SimpleThread::start() in start()
[all …]
Dsimplethread.h12 class U_EXPORT SimpleThread
15 SimpleThread();
16 virtual ~SimpleThread();
Dtsmthred.cpp145 void SimpleThread::errorFunc() { in errorFunc()
224 class TestThreadsThread : public SimpleThread
228 virtual void run() { SimpleThread::sleep(1000); in run()
245 class TestArabicShapeThreads : public SimpleThread
308 SimpleThread *threads[THREADTEST_NRTHREADS]; in TestThreads()
328 SimpleThread::sleep(100); in TestThreads()
364 SimpleThread::sleep(500); in TestThreads()
378 SimpleThread *threads[ARABICSHAPE_THREADTEST]; in TestArabicShapingThreads()
435 SimpleThread::sleep(500); in TestArabicShapingThreads()
473 class TestMutexThread : public SimpleThread
[all …]
/external/chromium_org/ppapi/utility/threading/
Dsimple_thread.h21 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&);
Dsimple_thread.cc26 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/
Dsimple_thread.cc14 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()
Dsimple_thread.h58 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 {
Dnon_thread_safe_unittest.cc48 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()
Dthread_checker_unittest.cc48 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()
Dthread_restrictions.h90 class SimpleThread; variable
200 friend class SimpleThread; variable
/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
60 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
60 SimpleThread testThread = new SimpleThread(); in run()
/external/chromium_org/ppapi/examples/threading/
Dthreading.cc15 thread_ = new pp::SimpleThread(this); in MyInstance()
39 pp::SimpleThread* thread_;
/external/chromium_org/mojo/system/
Dwaiter_test_utils.h47 class SimpleWaiterThread : public base::SimpleThread {
69 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()
Dmessage_pipe_dispatcher_unittest.cc516 class WriterThread : public base::SimpleThread {
523 : base::SimpleThread("writer_thread"), in WriterThread()
570 class ReaderThread : public base::SimpleThread {
576 : base::SimpleThread("reader_thread"), in ReaderThread()
Ddispatcher_unittest.cc130 class ThreadSafetyStressThread : public base::SimpleThread {
152 : base::SimpleThread("thread_safety_stress_thread"), in ThreadSafetyStressThread()
/external/chromium_org/ppapi/tests/
Dtest_message_handler.h32 pp::SimpleThread handler_thread_;
Dtest_message_loop.cc61 pp::SimpleThread thread(instance_); in TestPost()
/external/chromium_org/net/tools/quic/test_tools/
Dserver_thread.h18 class ServerThread : public base::SimpleThread {
Dserver_thread.cc17 : SimpleThread("server_thread"), in ServerThread()
/external/chromium_org/net/tools/flip_server/
Dacceptor_thread.h45 class SMAcceptorThread : public base::SimpleThread,

12