HomeSort by relevance Sort by last modified time
    Searched full:pthread_create (Results 51 - 75 of 1067) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/valgrind/main/drd/tests/
rwlock_race.c 47 pthread_create(&thread1, 0, thread_func, 0);
48 pthread_create(&thread2, 0, thread_func, 0);
threaded-fork.c 25 pthread_create(&childthread, NULL, threadmain, (void *)2);
31 pthread_create(&childthread, NULL, threadmain, 0);
pth_detached3.c 17 pthread_create(&thread, NULL, thread_func, NULL);
  /external/valgrind/main/helgrind/tests/
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");
tc16_byterace.c 22 if (pthread_create(&child, NULL, child_fn, NULL)) {
23 perror("pthread_create");
  /external/valgrind/main/none/tests/
pth_cancel1.c 43 if (pthread_create(&tid, NULL, thread_main, NULL) != 0)
45 perror("pthread_create");
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);
manythreads.c 20 pthread_create(&th, NULL, func, NULL);
  /external/compiler-rt/lib/tsan/lit_tests/
atomic_free.cc 13 pthread_create(&t, 0, Thread, a);
atomic_free2.cc 14 pthread_create(&t, 0, Thread, a);
heap_race.cc 14 pthread_create(&t, NULL, Thread, p);
sleep_sync2.cc 15 pthread_create(&t, 0, Thread, 0);
stack_race.cc 13 pthread_create(&t, 0, Thread, &Var);
suppress_same_address.cc 22 pthread_create(&t, 0, Thread1, 0);
thread_end_with_ignore.cc 14 pthread_create(&t, 0, Thread, 0);
thread_leak3.c 11 pthread_create(&t, 0, Thread, 0);
thread_leak4.c 13 pthread_create(&t, 0, Thread, 0);
thread_leak5.c 12 pthread_create(&t, 0, Thread, 0);
tiny_race.c 15 pthread_create(&t, 0, Thread1, 0);
tls_race.cc 13 pthread_create(&t, 0, Thread, &Var);
race_with_finished_thread.cc 29 pthread_create(&t[0], NULL, Thread1, NULL);
30 pthread_create(&t[1], NULL, Thread2, NULL);
42 // CHECK: #0 pthread_create
  /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 );

Completed in 64 milliseconds

1 23 4 5 6 7 8 91011>>