/external/compiler-rt/test/tsan/ |
mutex_robust2.cc | 23 pthread_create(&th, 0, thr, 0);
|
simple_stack2.cc | 40 pthread_create(&t, NULL, Thread1, NULL);
|
/external/jemalloc/test/src/ |
thd.c | 29 if (pthread_create(thd, NULL, proc, arg) != 0) 30 test_fail("Error in pthread_create()\n");
|
/external/regex-re2/util/ |
thread.cc | 27 pthread_create(&pid_, 0, startThread, this);
|
/external/valgrind/main/callgrind/tests/ |
threads.c | 41 pthread_create(&t[i], NULL, th, &sum[i]);
|
/external/valgrind/main/drd/tests/ |
annotate_static.cpp | 4 #include <pthread.h> /* pthread_create() */ 40 pthread_create(&tid, 0, thread_func, NULL);
|
pth_cancel_locked.c | 36 pthread_create(&tid, 0, &thread, 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]);
|
/external/valgrind/main/helgrind/tests/ |
free_is_write.c | 32 pthread_create(&tid, NULL, thread_func, NULL);
|
locked_vs_unlocked3.stderr.exp | 5 by 0x........: pthread_create@* (hg_intercepts.c:...) 12 by 0x........: pthread_create@* (hg_intercepts.c:...)
|
pth_destroy_cond.c | 29 pthread_create(&thread, NULL, ThreadFunction, (void*) NULL);
|
rwlock_race.stderr.exp | 6 by 0x........: pthread_create@* (hg_intercepts.c:...) 13 by 0x........: pthread_create@* (hg_intercepts.c:...)
|
tc05_simple_race.c | 27 if (pthread_create(&child, NULL, child_fn, NULL)) { 28 perror("pthread_create");
|
tc06_two_races.c | 26 if (pthread_create(&child, NULL, child_fn, NULL)) { 27 perror("pthread_create");
|
tc09_bad_unlock.c | 35 pthread_create( &child, NULL, child_fn, (void*)&mx2 );
|
tc16_byterace.c | 22 if (pthread_create(&child, NULL, child_fn, NULL)) { 23 perror("pthread_create");
|
bar_bad.c | 53 pthread_create(&thr1, NULL, child1, (void*)bar3); 65 pthread_create(&thr2, NULL, child1, (void*)bar4);
|
locked_vs_unlocked3.c | 53 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r); 54 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
|
tc22_exit_w_lock.c | 39 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r); 42 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
|
/external/valgrind/main/none/tests/ |
pth_stackalign.c | 21 if ((e = pthread_create(&t, NULL, thread_main, NULL)) != 0) 23 fprintf(stderr, "pthread_create: %s\n", strerror(e));
|
res_search.c | 42 if(0 != pthread_create(&pid, 0, fn, (void*)argv[1]))
|
pth_cancel2.c | 82 pthread_create(&io_thread, 86 pthread_create(&killer_thread,
|
/external/valgrind/main/none/tests/s390x/ |
ex_clone.c | 42 pthread_create(&thread, NULL, threadfunc, NULL);
|
/external/valgrind/main/none/tests/x86/ |
yield.c | 57 pthread_create(&a, NULL, spinner, NULL); 58 pthread_create(&b, NULL, rep_nopper, NULL);
|