/external/valgrind/main/helgrind/tests/ |
free_is_write.c | 32 pthread_create(&tid, NULL, thread_func, NULL);
|
pth_destroy_cond.c | 29 pthread_create(&thread, NULL, ThreadFunction, (void*) NULL);
|
tc14_laog_dinphils.c | 34 pthread_create(&phil[i], NULL, dine, (void*)i );
|
hg03_inherit.c | 44 pthread_create(&a, NULL, t1, (void *)&shared[0]); 46 pthread_create(&b, NULL, t2, (void *)&shared[1]);
|
bar_bad.c | 53 pthread_create(&thr1, NULL, child1, (void*)bar3); 65 pthread_create(&thr2, NULL, child1, (void*)bar4);
|
locked_vs_unlocked2.c | 61 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r); 62 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
|
tc07_hbl1.c | 108 if (pthread_create(&child, NULL, child_fn, NULL)) { 109 perror("pthread_create");
|
/external/valgrind/main/ |
glibc-2.2.supp | 427 fun:pthread_create@@GLIBC_2.2.5 432 LinuxThreads: write/pthread_create 435 fun:pthread_create@@GLIBC_2.1 438 LinuxThreads: write/pthread_create 442 fun:pthread_create@@GLIBC_2.1 460 LinuxThreads: write/pthread_create 464 fun:pthread_create@@GLIBC_2.2.5 467 LinuxThreads: write/__pthread_initialize_manager/pthread_create 472 fun:pthread_create@@GLIBC_2.2.5 481 fun:pthread_create@@GLIBC_2. [all...] |
darwin10-drd.supp | 116 pthread_create() 119 fun:pthread_create
|
glibc-2.3.supp | 240 fun:pthread_create 247 fun:pthread_create 254 fun:pthread_create 261 fun:pthread_create@@GLIBC_2.1 268 fun:pthread_create@@GLIBC_2.1 275 fun:pthread_create@@GLIBC_2.1 293 LinuxThreads: write/pthread_create 296 fun:pthread_create@@GLIBC_2.1 299 LinuxThreads: write/pthread_create 2 303 fun:pthread_create@@GLIBC_2. [all...] |
/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);
|
/external/compiler-rt/lib/tsan/lit_tests/ |
mutexset6.cc | 46 pthread_create(&t[0], NULL, Thread1, NULL); 47 pthread_create(&t[1], NULL, Thread2, NULL);
|
/external/llvm/unittests/Support/ |
ManagedStatic.cpp | 52 pthread_create(&t1, &a1, test1::helper, NULL); 53 pthread_create(&t2, &a2, test1::helper, NULL);
|
/external/valgrind/main/drd/tests/ |
atomic_var.c | 59 pthread_create(&tid[0], 0, thread_func_1, 0); 60 pthread_create(&tid[1], 0, thread_func_2, 0);
|
pth_detached.c | 58 pthread_create(&thread, &attr, thread_func1, NULL); 67 pthread_create(&thread, &attr, thread_func2, NULL);
|
pth_detached_sem.c | 65 pthread_create(&thread, &attr, thread_func1, &thread_arg[i]); 74 pthread_create(&thread, &attr, thread_func2, &thread_arg[i]);
|
pth_inconsistent_cond_wait.c | 117 PTH_CALL(pthread_create(&tid1, 0, &thread_func, &s_mutex1)); 118 PTH_CALL(pthread_create(&tid2, 0, &thread_func, &s_mutex2));
|
/external/valgrind/main/none/tests/ |
tls.c | 96 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]); 97 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
|
thread-exits.c | 72 ret = pthread_create(&t, NULL, thr, NULL); 74 printf("pthread_create failed: %s\n", strerror(ret)); 120 pthread_create(&pth, NULL, maker, NULL);
|
/external/valgrind/main/none/tests/x86/ |
yield.c | 57 pthread_create(&a, NULL, spinner, NULL); 58 pthread_create(&b, NULL, rep_nopper, NULL);
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_posix.cc | 64 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, k[0]), 0); 65 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, k[1]), 0); 67 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, k[2]), 0); 84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread, 129 EXPECT_EQ(pthread_create(&th, 0, cond_thread, &ctx), 0);
|
/external/compiler-rt/lib/asan/tests/ |
asan_test_utils.h | 52 // Check that pthread_create/pthread_join return success. 53 #define PTHREAD_CREATE(a, b, c, d) ASSERT_EQ(0, pthread_create(a, b, c, d))
|
asan_mac_test.cc | 30 PTHREAD_CREATE(&child, NULL, CFAllocatorDefaultDoubleFree, NULL); 56 PTHREAD_CREATE(&th1, NULL, CFAllocatorAllocateToGlob, NULL); 58 PTHREAD_CREATE(&th2, NULL, CFAllocatorDeallocateFromGlob, NULL); 178 PTHREAD_CREATE(&workers[i], 0, MallocIntrospectionLockWorker, 0); 180 PTHREAD_CREATE(&forker, 0, MallocIntrospectionLockForker, 0); 200 PTHREAD_CREATE(&th, NULL, TSDAllocWorker, &test_key);
|
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_mutex_test.cc | 101 pthread_create(&threads[i], 0, write_mutex_thread<Mutex>, &data); 111 pthread_create(&threads[i], 0, read_mutex_thread<Mutex>, &data); 121 pthread_create(&threads[i], 0, write_mutex_thread<SpinMutex>, &data);
|
/external/valgrind/main/gdbserver_tests/ |
t.c | 125 pthread_create(&ebbr, NULL, brussels_fn, NULL); 126 pthread_create(&egll, NULL, london_fn, NULL); 127 pthread_create(&zzzz, NULL, petaouchnok_fn, NULL);
|