HomeSort by relevance Sort by last modified time
    Searched refs:pthread_create (Results 26 - 50 of 374) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
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);
pth_cvsimple.c 67 pthread_create(&threads[0], NULL, watch_count, NULL);
69 pthread_create(&threads[1], NULL, inc_count, NULL);
70 pthread_create(&threads[2], NULL, inc_count, NULL);
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]))
  /external/valgrind/main/drd/tests/
pth_barrier_race.c 35 pthread_create(&tid, NULL, thread, NULL);
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/
tc03_re_excl.c 30 pthread_create(&thread_id, 0, worker_thread, (void*)x);
tc22_exit_w_lock.stderr.exp 7 by 0x........: pthread_create@* (hg_intercepts.c:...)
20 by 0x........: pthread_create@* (hg_intercepts.c:...)
free_is_write.c 32 pthread_create(&tid, NULL, thread_func, NULL);
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);
  /system/extras/tests/bionic/libc/common/
test_clock.c 42 pthread_create(&thread, NULL, cpu_hog, NULL);
  /system/bluetooth/tools/
pipetest.c 158 pthread_create(&t1, NULL, (void *)thread_poll, NULL);
159 pthread_create(&t2, NULL, (void *)thread_poll, NULL);
177 pthread_create(&t, NULL, (void *)thread_poll, (void *)fd[1]);
198 pthread_create(&t, NULL, (void *)thread_poll, (void *)fd[0]);
219 pthread_create(&t, NULL, (void *)thread_poll, (void *)fd[0]);
236 pthread_create(&t, NULL, (void *)thread_read, (void *)fd[0]);
276 pthread_create(&t1, NULL, (void *)thread_pollin, (void *)fd[0]);
277 pthread_create(&t2, NULL, (void *)thread_pollin, (void *)fd[0]);
300 pthread_create(&t[i], NULL, (void *)thread_pollin_rand_delay, (void *)fd[0]);
323 pthread_create(&t1, NULL, (void *)thread_poll, (void *)fd[0])
    [all...]
  /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/none/tests/s390x/
ex_clone.c 42 pthread_create(&thread, NULL, threadfunc, NULL);
  /system/extras/tests/bionic/libc/other/
test_thread_max.c 53 if (pthread_create( &thread, &attr, thread_func, (void*)(long)count ) < 0) {

Completed in 477 milliseconds

12 3 4 5 6 7 8 91011>>