Searched refs:th (Results 26 - 50 of 281) sorted by relevance

1234567891011>>

/external/compiler-rt/test/tsan/
H A Dfd_dup_race.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
H A Djava_lock.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
30 pthread_join(th, 0);
H A Djava_race_move.cc23 pthread_t th; local
24 pthread_create(&th, 0, Thread, 0);
28 pthread_join(th, 0);
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 Dsignal_errno.cc41 pthread_t th; local
42 pthread_create(&th, 0, sendsignal, 0);
44 pthread_join(th, 0);
H A Dfork_multithreaded.cc19 pthread_t th; local
20 pthread_create(&th, 0, sleeper, 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 Dbarrier.cc33 pthread_t th[kSize];
35 pthread_create(&th[i], 0, thr, (void*)(long)i);
37 pthread_join(th[i], 0);
H A Dcond_destruction.cc27 pthread_t th; local
30 pthread_create(&th, 0, thr, 0);
49 pthread_join(th, 0);
H A Dcond_race.cc29 pthread_t th; local
30 pthread_create(&th, 0, thr, c);
38 pthread_join(th, 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_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_move.cc29 pthread_t th; local
30 pthread_create(&th, 0, Thread, 0);
36 pthread_join(th, 0);
H A Djava_lock_rec_race.cc36 pthread_t th; local
37 pthread_create(&th, 0, Thread, 0);
43 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_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);
/external/skia/tools/skqp/
H A Dmake_apk_list33 <th>APK</th>
34 <th>Date</th>
35 <th>Commit</th>
/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);
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_posix.cc59 pthread_t th[3]; local
63 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, &k1), 0);
64 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, &k2), 0);
65 EXPECT_EQ(pthread_join(th[0], 0), 0);
66 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, &k3), 0);
67 EXPECT_EQ(pthread_join(th[1], 0), 0);
68 EXPECT_EQ(pthread_join(th[2], 0), 0);
82 pthread_t th[kThreads]; local
84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread,
87 EXPECT_EQ(pthread_join(th[
133 pthread_t th; local
[all...]
/external/testng/src/main/java/org/testng/junit/
H A DJUnit3TestMethod.java23 } catch (Throwable th) {
25 "Method '" + name + "' not found in class '" + t + "': " + th.getMessage());
/external/valgrind/callgrind/tests/
H A Dthreads.c14 static void *th(void *v) function
41 pthread_create(&t[i], NULL, th, &sum[i]);
/external/eigen/demos/mandelbrot/
H A Dmandelbrot.cpp134 for(int th = 0; th < threadcount; th++)
135 threads[th]->start(QThread::LowPriority);
136 for(int th = 0; th < threadcount; th++)
138 threads[th]->wait();
139 total_iter += threads[th]->total_iter;
182 for(int th
[all...]

Completed in 382 milliseconds

1234567891011>>