Searched defs:th (Results 1 - 25 of 85) sorted by relevance

1234

/external/compiler-rt/test/tsan/
H A Dmutex_double_lock.cc15 pthread_t th; local
16 pthread_create(&th, 0, ThreadFunc, &m);
17 pthread_join(th, 0);
H A Dfork_multithreaded.cc17 pthread_t th; local
18 pthread_create(&th, 0, sleeper, 0);
H A Dmalloc_stack.cc15 pthread_t th; local
16 pthread_create(&th, 0, thr, p);
18 pthread_join(th, 0);
H A Dcond_cancel.c24 pthread_t th; local
29 pthread_create(&th, 0, thr1, 0);
31 pthread_cancel(th);
33 pthread_join(th, 0);
H A Djava_finalizer.cc17 pthread_t th; local
18 pthread_create(&th, 0, Thread, (void*)jheap);
20 pthread_join(th, 0);
H A Djava_race.cc15 pthread_t th; local
16 pthread_create(&th, 0, Thread, (void*)jheap);
18 pthread_join(th, 0);
H A Dmutex_robust.cc20 pthread_t th; local
21 pthread_create(&th, 0, thr, 0);
27 pthread_join(th, 0);
H A Dmutex_robust2.cc22 pthread_t th; local
23 pthread_create(&th, 0, thr, 0);
30 pthread_join(th, 0);
H A Drace_on_puts.cc19 pthread_t th[2]; local
20 pthread_create(&th[0], 0, Thread0, 0);
21 pthread_create(&th[1], 0, Thread1, 0);
22 pthread_join(th[0], 0);
23 pthread_join(th[1], 0);
H A Dcond_race.cc30 pthread_t th; local
31 pthread_create(&th, 0, thr, c);
39 pthread_join(th, 0);
H A Djava_alloc.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4));
27 pthread_join(th, 0);
H A Djava_lock.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
H A Djava_lock_rec.cc37 pthread_t th; local
38 pthread_create(&th, 0, Thread, 0);
47 pthread_join(th, 0);
H A Djava_lock_rec_race.cc35 pthread_t th; local
36 pthread_create(&th, 0, Thread, 0);
41 pthread_join(th, 0);
H A Djava_race_move.cc22 pthread_t th; local
23 pthread_create(&th, 0, Thread, 0);
26 pthread_join(th, 0);
H A Djava_rwlock.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
H A Dsunrpc.cc16 pthread_t th[2]; local
17 pthread_create(&th[0], 0, thr, 0);
18 pthread_create(&th[1], 0, thr, 0);
19 pthread_join(th[0], 0);
20 pthread_join(th[1], 0);
H A Djava_lock_move.cc28 pthread_t th; local
29 pthread_create(&th, 0, Thread, 0);
34 pthread_join(th, 0);
/external/doclava/res/assets/templates/
H A Dtodo.cs14 table th { property
35 <tr><th>Errors</th><td><?cs var:all.errorCount ?></td></tr>
36 <tr><th>Percent Good</th><td><?cs var:all.percentGood ?></td></tr>
37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
44 <th>Package</th>
45 <th>Error
[all...]
/external/valgrind/main/none/tests/
H A Dpth_exit.c4 static void *th(void *v) function
14 pthread_create(&a, NULL, th, NULL);
15 pthread_create(&a, NULL, th, NULL);
16 pthread_create(&a, NULL, th, NULL);
17 pthread_create(&a, NULL, th, NULL);
H A Dmanythreads.c15 pthread_t th; local
20 pthread_create(&th, NULL, func, NULL);
21 pthread_join(th, NULL);
/external/valgrind/main/helgrind/tests/
H A Dhg04_race.c8 static void *th(void *v) function
19 pthread_create(&a, NULL, th, NULL);
21 pthread_create(&b, NULL, th, NULL);
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);
/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/valgrind/main/callgrind/tests/
H A Dthreads.c14 static void *th(void *v) function
41 pthread_create(&t[i], NULL, th, &sum[i]);

Completed in 9572 milliseconds

1234