Searched defs:MyThread (Results 1 - 4 of 4) sorted by relevance

/external/valgrind/unittest/
H A Dthread_wrappers_win.h193 class MyThread { class
197 MyThread(worker_t worker, void *arg = NULL, const char *name = NULL) function in class:MyThread
199 MyThread(void (*worker)(void), void *arg = NULL, const char *name = NULL) function in class:MyThread
201 MyThread(void (*worker)(void *), void *arg = NULL, const char *name = NULL) function in class:MyThread
204 ~MyThread(){
219 static DWORD WINAPI ThreadBody(MyThread *my_thread) {
H A Dthread_wrappers_pthread.h334 class MyThread { class
338 MyThread(worker_t worker, void *arg = NULL, const char *name = NULL) function in class:MyThread
340 MyThread(void (*worker)(void), void *arg = NULL, const char *name = NULL) function in class:MyThread
342 MyThread(void (*worker)(void *), void *arg = NULL, const char *name = NULL) function in class:MyThread
345 ~MyThread(){ w_ = NULL; arg_ = NULL;}
350 static void ThreadBody(MyThread *my_thread) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DThreadGroupTest.java24 class MyThread extends Thread { class in class:ThreadGroupTest
27 public MyThread(ThreadGroup group, String name) method in class:ThreadGroupTest.MyThread
980 private boolean allSuspended(Vector<MyThread> threads) {
982 MyThread t = threads.elementAt(i);
1016 private Vector<MyThread> populateGroupsWithThreads(final ThreadGroup aGroup,
1018 Vector<MyThread> result = new Vector<MyThread>();
1025 final int threadCount, final Vector<MyThread> allCreated) {
1028 final String name = "(MyThread)N =" + iClone + "/" + threadCount
1031 MyThread
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_thread_wrappers_pthread.h342 class MyThread { class
346 MyThread(worker_t worker, void *arg = NULL, const char *name = NULL) function in class:MyThread
348 MyThread(void (*worker)(void), void *arg = NULL, const char *name = NULL) function in class:MyThread
350 MyThread(void (*worker)(void *), void *arg = NULL, const char *name = NULL) function in class:MyThread
353 ~MyThread(){ w_ = NULL; arg_ = NULL;}
358 static void ThreadBody(MyThread *my_thread) {
507 MyThread *thread = new MyThread(&ThreadPool::Worker, this);
537 std::vector<MyThread*> workers_;

Completed in 238 milliseconds