/external/valgrind/drd/tests/ |
std_thread2.supp | 12 pthread_create 14 fun:pthread_create@@GLIBC_2.2* 17 pthread_create 20 fun:pthread_create@@GLIBC_2.2*
|
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/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/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);
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
pthread_create_version.cc | 2 // Regression test for the versioned pthread_create interceptor on linux/i386. 4 // pthread_create is intercepted; dlsym always returns the oldest version. 5 // This results in a crash inside pthread_create in libc. 19 pthread_create(&t, &attr, ThreadFunc, nullptr);
|
/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 | 21 pthread_create(&t[0], NULL, Thread1, NULL); 22 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 | 21 pthread_create(&th[0], 0, Thread0, 0); 22 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 | 21 pthread_create(&t[0], NULL, Thread1, NULL); 22 pthread_create(&t[1], NULL, Thread2, NULL);
|
stack_race2.cc | 13 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 | 18 pthread_create(&th[0], 0, thr, 0); 19 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
|
/prebuilts/go/darwin-x86/src/runtime/cgo/ |
openbsd.go | 30 // We override pthread_create to support PT_TLS. 31 //go:cgo_export_dynamic pthread_create pthread_create
|
/prebuilts/go/linux-x86/src/runtime/cgo/ |
openbsd.go | 30 // We override pthread_create to support PT_TLS. 31 //go:cgo_export_dynamic pthread_create pthread_create
|
/external/compiler-rt/test/tsan/Darwin/ |
osspinlock-norace.cc | 20 pthread_create(&t[0], NULL, Thread, NULL); 21 pthread_create(&t[1], NULL, Thread, NULL);
|
/external/jemalloc/test/src/ |
thd.c | 29 if (pthread_create(thd, NULL, proc, arg) != 0) 30 test_fail("Error in pthread_create()\n");
|