Searched defs:th (Results 26 - 50 of 142) sorted by relevance

123456

/external/compiler-rt/test/tsan/
H A Djava_race_pc.cc27 pthread_t th; local
28 pthread_create(&th, 0, Thread, (void*)jheap);
31 pthread_join(th, 0);
H A Djava_rwlock.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
30 pthread_join(th, 0);
H A Djava_volatile.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
31 pthread_create(&th, 0, Thread, 0);
35 pthread_join(th, 0);
H A Dmmap_stress.cc23 pthread_t th[4]; local
25 if (pthread_create(&th[i], 0, SubWorker, 0))
29 if (pthread_join(th[i], 0))
37 pthread_t th[4]; local
39 if (pthread_create(&th[i], 0, Worker1, 0))
43 if (pthread_join(th[i], 0))
54 pthread_t th[4];
56 if (pthread_create(&th[i], 0, Worker, 0))
60 if (pthread_join(th[i], 0))
H A Dsignal_sync.cc25 pthread_t th[kThreads]; local
27 pthread_create(&th[i], 0, thr, 0);
48 pthread_join(th[i], 0);
H A Dsignal_thread.cc42 pthread_t th; local
43 pthread_create(&th, 0, thr, 0);
44 pthread_join(th, 0);
H A Dsunrpc.cc17 pthread_t th[2]; local
18 pthread_create(&th[0], 0, thr, 0);
19 pthread_create(&th[1], 0, thr, 0);
20 pthread_join(th[0], 0);
21 pthread_join(th[1], 0);
H A Ddl_iterate_phdr.cc38 pthread_t th; local
39 pthread_create(&th, 0, thread, 0);
49 pthread_join(th, 0);
H A Djava_lock_move.cc29 pthread_t th; local
30 pthread_create(&th, 0, Thread, 0);
36 pthread_join(th, 0);
H A Djava_move_overlap_race.cc39 pthread_t th; local
40 pthread_create(&th, 0, Thread, 0);
47 pthread_join(th, 0);
H A Djava_symbolization.cc32 pthread_t th; local
33 pthread_create(&th, 0, Thread, (void*)jheap);
36 pthread_join(th, 0);
H A Dsignal_errno.cc41 pthread_t th; local
42 pthread_create(&th, 0, sendsignal, 0);
44 pthread_join(th, 0);
H A Dsignal_reset.cc61 pthread_t th[2]; local
62 pthread_create(&th[0], 0, busy, 0);
63 pthread_create(&th[1], 0, reset, 0);
65 pthread_join(th[1], 0);
67 pthread_join(th[0], 0);
H A Dsignal_sync2.cc60 pthread_t th; local
61 pthread_create(&th, 0, thr, 0);
71 pthread_join(th, 0);
H A Dunaligned_norace.cc76 pthread_t th; local
77 pthread_create(&th, 0, Thread, 0);
79 pthread_join(th, 0);
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DExceptionUtil.java30 public static boolean isFileNotFoundException(Throwable th) { argument
31 while (th != null) {
32 if (th instanceof JSilverTemplateNotFoundException || th instanceof FileNotFoundException) {
35 th = th.getCause();
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_unlock/
H A D5-1.c110 pthread_t th; local
150 ret = pthread_create(&th, NULL, threaded, NULL);
156 ret = pthread_join(th, NULL);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_getvalue/
H A D2-2.c100 pthread_t th; local
113 ret = pthread_create(&th, NULL, threaded, &sem);
143 ret = pthread_join(th, NULL);
/external/valgrind/callgrind/tests/
H A Dthreads.c14 static void *th(void *v) function
41 pthread_create(&t[i], NULL, th, &sum[i]);
/external/valgrind/helgrind/tests/
H A Dhg01_all_ok.c17 static void *th(void *v) function
41 pthread_create(&a, NULL, th, NULL);
42 pthread_create(&b, NULL, th, NULL);
H A Dhg05_race2.c13 static void *th(void *v) function
27 pthread_create(&a, NULL, th, &foo);
29 pthread_create(&b, NULL, th, &foo);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
H A D21-1.c74 pthread_t th; local
89 ret = pthread_create(&th, NULL, threaded, &ctl);
132 ret = pthread_join(th, NULL);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
H A D1-5.c240 pthread_t th; local
242 ret = pthread_create(&th, &scenarii[sc].ta, overflow, NULL); /* Create a new thread with the same attributes */
249 ret = pthread_join(th, NULL);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
H A D1-3.c124 pthread_t th[NTHREADS]; local
134 ret = pthread_create(&th[i], NULL, threaded, &myctl);
143 ret = pthread_join(th[i], NULL);
/external/ltp/testcases/open_posix_testsuite/stress/threads/
H A Dhelper.c90 pthread_t th; local
118 ret = pthread_create(&th, NULL, timer, NULL);
157 (void)pthread_cancel(th);
159 ret = pthread_join(th, NULL);

Completed in 626 milliseconds

123456