HomeSort by relevance Sort by last modified time
    Searched refs:pthread_create (Results 1 - 25 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/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);
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);
  /external/valgrind/main/helgrind/tests/
hg04_race.c 19 pthread_create(&a, NULL, th, NULL);
21 pthread_create(&b, NULL, th, NULL);
hg01_all_ok.c 25 pthread_create(&a, NULL, th, NULL);
26 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);
hg02_deadlock.c 35 pthread_create(&a, NULL, t1, NULL);
36 pthread_create(&b, NULL, t2, NULL);
hg03_inherit.c 44 pthread_create(&a, NULL, t1, (void *)&shared[0]);
46 pthread_create(&b, NULL, t2, (void *)&shared[1]);
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");
tc22_exit_w_lock.stderr.exp 4 by 0x........: pthread_create@* (hg_intercepts.c:...)
12 by 0x........: pthread_create@* (hg_intercepts.c:...)
tc03_re_excl.c 30 pthread_create(&thread_id, 0, worker_thread, (void*)x);
  /system/extras/tests/bionic/libc/common/
test_pthread_join.c 67 pthread_create( &t1, NULL, thread1_func, NULL );
68 pthread_create( &t2, NULL, thread2_func, (void*)t1 );
69 pthread_create( &t3, NULL, thread3_func, (void*)t1 );
  /external/valgrind/main/drd/tests/
annotate_hb_race.c 34 pthread_create(&tid[0], 0, thread_func, &result[0]);
35 pthread_create(&tid[1], 0, thread_func, &result[1]);
rwlock_race.c 47 pthread_create(&thread1, 0, thread_func, 0);
48 pthread_create(&thread2, 0, thread_func, 0);
linuxthreads_det.c 32 pthread_create(&threadid, 0, thread_func, 0);
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,
pth_barrier_race.c 35 pthread_create(&tid, NULL, thread, NULL);
  /system/core/debuggerd/
crasher.c 70 pthread_create(&thr, &attr, noisy, (void*) 'A');
71 pthread_create(&thr, &attr, noisy, (void*) 'B');
72 pthread_create(&thr, &attr, noisy, (void*) 'C');
93 pthread_create(&thr, &attr, test_thread, 0);
  /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 277 milliseconds

1 2 3 4 5 6 7 8 91011>>