HomeSort by relevance Sort by last modified time
    Searched refs:pthread_create (Results 1 - 25 of 374) 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);
  /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]);
locked_vs_unlocked1.c 29 if (pthread_create(&child1, NULL, child_fn, (void*)(long)(sw ? 0 : 1))) {
34 if (pthread_create(&child2, NULL, child_fn, (void*)(long)(sw ? 1 : 0))) {
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/llvm/unittests/Support/
ManagedStatic.cpp 36 pthread_create(&t1, NULL, test1::helper, NULL);
37 pthread_create(&t2, NULL, test1::helper, NULL);
  /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 35 pthread_create(&tid[0], 0, thread_func, &result[0]);
36 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);
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);
  /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 );
  /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);

Completed in 185 milliseconds

1 2 3 4 5 6 7 8 91011>>