/external/compiler-rt/lib/tsan/lit_tests/ |
oob_race.cc | 17 pthread_create(&th, 0, Thread, p);
|
race_on_mutex2.c | 17 pthread_create(&t, 0, Thread, &Mtx);
|
suppress_same_address.cc | 22 pthread_create(&t, 0, Thread1, 0);
|
load_shared_lib.cc | 24 pthread_create(&t1, NULL, access_callback, NULL); 25 pthread_create(&t2, NULL, access_callback, NULL);
|
mutexset6.cc | 46 pthread_create(&t[0], NULL, Thread1, NULL); 47 pthread_create(&t[1], NULL, Thread2, NULL);
|
vptr_benign_race.cc | 44 pthread_create(&t[0], NULL, Thread1, NULL); 45 pthread_create(&t[1], NULL, Thread2, NULL);
|
vptr_harmful_race.cc | 45 pthread_create(&t[0], NULL, Thread1, NULL); 46 pthread_create(&t[1], NULL, Thread2, NULL);
|
vptr_harmful_race2.cc | 45 pthread_create(&t[0], NULL, Thread1, NULL); 46 pthread_create(&t[1], NULL, Thread2, NULL);
|
/external/valgrind/main/drd/tests/ |
linuxthreads_det.c | 32 pthread_create(&threadid, 0, thread_func, 0);
|
pth_detached3.c | 17 pthread_create(&thread, NULL, thread_func, NULL);
|
atomic_var.c | 59 pthread_create(&tid[0], 0, thread_func_1, 0); 60 pthread_create(&tid[1], 0, thread_func_2, 0);
|
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");
|
pth_create_chain.c | 22 pthread_create(&s_thread[thread_count], 0, thread_func, 42 pthread_create(&s_thread[thread_count], 0, thread_func,
|
threaded-fork.c | 25 pthread_create(&childthread, NULL, threadmain, (void *)2); 31 pthread_create(&childthread, NULL, threadmain, 0);
|
/external/valgrind/main/helgrind/tests/ |
tc01_simple_race.c | 22 if (pthread_create(&child, NULL, child_fn, NULL)) { 23 perror("pthread_create");
|
tc02_simple_tls.c | 25 if (pthread_create(&child, NULL, child_fn, NULL)) { 26 perror("pthread_create");
|
/external/valgrind/main/none/tests/ |
manythreads.c | 20 pthread_create(&th, NULL, func, NULL);
|
threaded-fork.c | 23 pthread_create( &childthread, NULL, threadmain, (void *)2 ); 28 pthread_create( &childthread, NULL, threadmain, 0 );
|
threadederrno.c | 27 pthread_create(&tid2, NULL, &thr2, NULL); 28 pthread_create(&tid3, NULL, &thr3, NULL);
|
/system/extras/tests/bionic/libc/bionic/ |
test_pthread_cond.c | 73 pthread_create( &t[0], NULL, thread1_func, (void *)1 ); 74 pthread_create( &t[1], NULL, thread2_func, (void *)2 ); 75 pthread_create( &t[2], NULL, thread3_func, (void *)3 ); 76 pthread_create( &t[3], NULL, thread4_func, (void *)4 );
|
test_pthread_create.c | 24 pthread_create( &t1, NULL, thread1_func, (void *)1 );
|
/external/compiler-rt/lib/asan/tests/ |
asan_racy_double_free_test.cc | 28 pthread_create(&t[0], 0, Thread1, 0); 29 pthread_create(&t[1], 0, Thread2, 0);
|
/external/llvm/unittests/Support/ |
ManagedStatic.cpp | 52 pthread_create(&t1, &a1, test1::helper, NULL); 53 pthread_create(&t2, &a2, test1::helper, NULL);
|
/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/ |
thread_creator.c | 24 return pthread_create((pthread_t *) tid, NULL, 43 * small overhead of pulling in pthread_create() even if the
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/ |
use_stacks_threaded.cc | 27 int res = pthread_create(&thread_id, 0, stacks_thread_func, &sync);
|