/external/valgrind/main/none/tests/ |
pth_exit.c | 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);
|
/external/ltrace/testsuite/ltrace.main/ |
main-threaded.c | 21 pthread_create (&thread1, NULL, th_main, "aaa"); 22 pthread_create (&thread2, NULL, th_main, "bbb"); 23 pthread_create (&thread3, NULL, th_main, "ccc");
|
/external/valgrind/main/drd/tests/ |
pth_create_glibc_2_0.c | 2 * Test program that invokes pthread_create@GLIBC_2.0(). 4 * Note: pthread_create@GLIBC_2.0() is only available in 32-bit glibc versions, 16 __asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0"); 33 fprintf(stderr, "pthread_create() failed.\n");
|
pth_cleanup_handler.c | 49 if (pthread_create(&pt1, NULL, f, NULL) != 0) 51 fprintf(stderr, "pthread_create()\n"); 54 if (pthread_create(&pt2, NULL, f, NULL) != 0) 56 fprintf(stderr, "pthread_create()\n");
|
/external/valgrind/main/helgrind/tests/ |
hg04_race.c | 19 pthread_create(&a, NULL, th, NULL); 21 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);
|
hg01_all_ok.c | 41 pthread_create(&a, NULL, th, NULL); 42 pthread_create(&b, NULL, th, NULL);
|
hg02_deadlock.c | 35 pthread_create(&a, NULL, t1, NULL); 36 pthread_create(&b, NULL, t2, NULL);
|
/external/lldb/test/functionalities/thread/ |
main.c | 29 pthread_create (&thread_2, NULL, thread2, NULL); 48 pthread_create (&thread_1, NULL, thread1, NULL); 51 pthread_create (&thread_3, NULL, thread3, NULL);
|
/external/compiler-rt/test/tsan/ |
static_init5.cc | 20 pthread_create(&t, 0, AsyncInit, (void*)(long)rand()); 35 pthread_create(&t[0], 0, Thread1, 0); 36 pthread_create(&t[1], 0, Thread1, 0);
|
static_init6.cc | 20 pthread_create(&t, 0, AsyncInit, (void*)(long)rand()); 35 pthread_create(&t[0], 0, Thread1, 0); 36 pthread_create(&t[1], 0, Thread1, 0);
|
atomic_stack.cc | 20 pthread_create(&t[0], NULL, Thread1, NULL); 21 pthread_create(&t[1], NULL, Thread2, NULL);
|
default_options.cc | 23 pthread_create(&t[0], NULL, Thread1, NULL); 24 pthread_create(&t[1], NULL, Thread2, NULL);
|
race_on_puts.cc | 20 pthread_create(&th[0], 0, Thread0, 0); 21 pthread_create(&th[1], 0, Thread1, 0);
|
simple_race.c | 21 pthread_create(&t[0], NULL, Thread1, NULL); 22 pthread_create(&t[1], NULL, Thread2, NULL);
|
simple_race.cc | 19 pthread_create(&t[0], NULL, Thread1, NULL); 20 pthread_create(&t[1], NULL, Thread2, NULL);
|
stack_race2.cc | 15 pthread_create(&t, 0, Thread2, &Var); 23 pthread_create(&t, 0, Thread, 0);
|
static_init1.cc | 20 pthread_create(&t[0], 0, Thread, 0); 21 pthread_create(&t[1], 0, Thread, 0);
|
sunrpc.cc | 17 pthread_create(&th[0], 0, thr, 0); 18 pthread_create(&th[1], 0, thr, 0);
|
suppressions_global.cc | 19 pthread_create(&t[0], NULL, Thread1, NULL); 20 pthread_create(&t[1], NULL, Thread2, NULL);
|
thread_end_with_ignore.cc | 14 pthread_create(&t, 0, Thread, 0); 19 // CHECK: #0 pthread_create
|
thread_name2.cc | 22 pthread_create(&t[0], 0, Thread1, 0); 23 pthread_create(&t[1], 0, Thread2, 0);
|
tls_race2.cc | 15 pthread_create(&t, 0, Thread2, &Var); 23 pthread_create(&t, 0, Thread, 0);
|
/external/jemalloc/test/src/ |
thd.c | 29 if (pthread_create(thd, NULL, proc, arg) != 0) 30 test_fail("Error in pthread_create()\n");
|