HomeSort by relevance Sort by last modified time
    Searched defs:th (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/compiler-rt/test/tsan/
malloc_stack.cc 15 pthread_t th; local
16 pthread_create(&th, 0, thr, p);
19 pthread_join(th, 0);
mutex_double_lock.cc 15 pthread_t th; local
16 pthread_create(&th, 0, ThreadFunc, &m);
17 pthread_join(th, 0);
setuid.c 24 pthread_t th; local
25 pthread_create(&th, 0, thread, 0);
27 pthread_join(th, 0);
fd_dup_race.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
fork_multithreaded.cc 19 pthread_t th; local
20 pthread_create(&th, 0, sleeper, 0);
race_on_puts.cc 20 pthread_t th[2]; local
21 pthread_create(&th[0], 0, Thread0, 0);
22 pthread_create(&th[1], 0, Thread1, 0);
23 pthread_join(th[0], 0);
24 pthread_join(th[1], 0);
sunrpc.cc 17 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);
cond_cancel.c 37 pthread_t th; local
42 pthread_create(&th, 0, thr1, 0);
45 pthread_cancel(th);
47 pthread_join(th, 0);
cond_destruction.cc 27 pthread_t th; local
30 pthread_create(&th, 0, thr, 0);
49 pthread_join(th, 0);
cond_race.cc 29 pthread_t th; local
30 pthread_create(&th, 0, thr, c);
38 pthread_join(th, 0);
dl_iterate_phdr.cc 38 pthread_t th; local
39 pthread_create(&th, 0, thread, 0);
49 pthread_join(th, 0);
fd_dup_norace2.cc 47 pthread_t th; local
48 pthread_create(&th, 0, Thread, 0);
51 pthread_join(th, 0);
java_alloc.cc 24 pthread_t th; local
25 pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4));
27 pthread_join(th, 0);
java_finalizer.cc 18 pthread_t th; local
19 pthread_create(&th, 0, Thread, (void*)jheap);
22 pthread_join(th, 0);
java_race.cc 17 pthread_t th; local
18 pthread_create(&th, 0, Thread, (void*)jheap);
21 pthread_join(th, 0);
java_symbolization.cc 32 pthread_t th; local
33 pthread_create(&th, 0, Thread, (void*)jheap);
36 pthread_join(th, 0);
mmap_stress.cc 23 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))
pthread_key.cc 28 pthread_t th; local
29 pthread_create(&th, 0, thr, 0);
30 pthread_join(th, 0);
32 pthread_t th[2]; local
33 pthread_create(&th[0], 0, thr, 0);
34 pthread_create(&th[1], 0, thr, 0);
35 pthread_join(th[0], 0);
36 pthread_join(th[1], 0);
race_stress.cc 16 pthread_t th[kThreads]; local
18 pthread_create(&th[i], 0, thr, 0);
20 pthread_join(th[i], 0);
signal_thread.cc 42 pthread_t th; local
43 pthread_create(&th, 0, thr, 0);
44 pthread_join(th, 0);
  /art/test/003-omnibus-opcodes/src/
Throw.java 117 Throw th = new Throw(); local
119 th.one();
120 th.twoA();
121 th.twoN();
122 th.rethrow();
  /external/compiler-rt/test/tsan/Linux/
mutex_robust.cc 20 pthread_t th; local
21 pthread_create(&th, 0, thr, 0);
27 pthread_join(th, 0);
mutex_robust2.cc 22 pthread_t th; local
23 pthread_create(&th, 0, thr, 0);
30 pthread_join(th, 0);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_unlock/
5-1.c 103 pthread_t th; local
143 ret = pthread_create(&th, NULL, threaded, NULL);
149 ret = pthread_join(th, NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_getvalue/
2-2.c 100 pthread_t th; local
113 ret = pthread_create(&th, NULL, threaded, &sem);
143 ret = pthread_join(th, NULL);

Completed in 2548 milliseconds

1 2 3 4 5 6