/external/compiler-rt/lib/tsan/lit_tests/ |
static_init1.cc | 20 pthread_create(&t[0], 0, Thread, 0); 21 pthread_create(&t[1], 0, Thread, 0);
|
suppressions_global.cc | 19 pthread_create(&t[0], NULL, Thread1, NULL); 20 pthread_create(&t[1], NULL, Thread2, NULL);
|
suppressions_race.cc | 21 pthread_create(&t[0], NULL, Thread1, NULL); 22 pthread_create(&t[1], NULL, Thread2, NULL);
|
suppressions_race2.cc | 21 pthread_create(&t[0], NULL, Thread1, NULL); 22 pthread_create(&t[1], NULL, Thread2, NULL);
|
aligned_vs_unaligned_race.cc | 26 pthread_create(&t[0], NULL, Thread1, NULL); 27 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_close_norace.cc | 24 pthread_create(&t[0], NULL, Thread1, NULL); 25 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_dup_norace.cc | 27 pthread_create(&t[0], NULL, Thread1, NULL); 28 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_pipe_norace.cc | 26 pthread_create(&t[0], NULL, Thread1, NULL); 27 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_socketpair_norace.cc | 30 pthread_create(&t[0], NULL, Thread1, NULL); 31 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_stdout_race.cc | 29 pthread_create(&t[0], NULL, Thread1, NULL); 30 pthread_create(&t[1], NULL, Thread2, NULL);
|
memcpy_race.cc | 28 pthread_create(&t[0], NULL, Thread1, NULL); 29 pthread_create(&t[1], NULL, Thread2, NULL);
|
mop_with_offset.cc | 25 pthread_create(&t[0], NULL, Thread1, data); 26 pthread_create(&t[1], NULL, Thread2, data);
|
mop_with_offset2.cc | 25 pthread_create(&t[0], NULL, Thread1, data); 26 pthread_create(&t[1], NULL, Thread2, data);
|
mutexset1.cc | 32 pthread_create(&t[0], NULL, Thread1, NULL); 33 pthread_create(&t[1], NULL, Thread2, NULL);
|
mutexset2.cc | 32 pthread_create(&t[0], NULL, Thread1, NULL); 33 pthread_create(&t[1], NULL, Thread2, NULL);
|
mutexset3.cc | 39 pthread_create(&t[0], NULL, Thread1, NULL); 40 pthread_create(&t[1], NULL, Thread2, NULL);
|
mutexset4.cc | 39 pthread_create(&t[0], NULL, Thread1, NULL); 40 pthread_create(&t[1], NULL, Thread2, NULL);
|
mutexset5.cc | 40 pthread_create(&t[0], NULL, Thread1, NULL); 41 pthread_create(&t[1], NULL, Thread2, NULL);
|
mutexset7.cc | 27 pthread_create(&t[0], NULL, Thread1, NULL); 28 pthread_create(&t[1], NULL, Thread2, NULL);
|
/external/valgrind/main/helgrind/tests/ |
hg01_all_ok.c | 25 pthread_create(&a, NULL, th, NULL); 26 pthread_create(&b, NULL, th, NULL);
|
hg05_race2.c | 27 pthread_create(&a, NULL, th, &foo); 29 pthread_create(&b, NULL, th, &foo);
|
hg06_readshared.c | 24 pthread_create(&a, NULL, t1, NULL); 25 pthread_create(&b, NULL, t2, NULL);
|
/system/extras/tests/bionic/libc/common/ |
test_pthread_join.c | 67 pthread_create( &t1, NULL, thread1_func, NULL ); 68 pthread_create( &t2, NULL, thread2_func, (void*)t1 ); 69 pthread_create( &t3, NULL, thread3_func, (void*)t1 );
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/ |
unpoison_tls.cc | 30 assert(0 == pthread_create(&p, 0, first, 0)); 32 assert(0 == pthread_create(&p, 0, second, 0));
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
deep_thread_stack.cc | 30 pthread_create(&thread, NULL, (callback_type)function, NULL); 37 pthread_create(&runner, NULL, RunnerThread, (void*)function);
|