HomeSort by relevance Sort by last modified time
    Searched refs:pthread_create (Results 251 - 275 of 1491) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/misc/cgo/test/
cthread_unix.c 31 pthread_create(&thread_id[i], 0, addThread, &max);
sigprocmask.c 34 r = pthread_create(&thread, NULL, &sigthreadfunc, NULL);
  /prebuilts/go/linux-x86/misc/cgo/test/
cthread_unix.c 31 pthread_create(&thread_id[i], 0, addThread, &max);
sigprocmask.c 34 r = pthread_create(&thread, NULL, &sigthreadfunc, NULL);
  /system/extras/simpleperf/runtest/
function_pthread.cpp 22 int ret = pthread_create(&thread, nullptr, ChildThreadFunction, nullptr);
24 fprintf(stderr, "pthread_create failed: %s\n", strerror(ret));
  /cts/hostsidetests/security/securityPatch/Bug-33863407/
poc.c 77 ret = pthread_create((pthread_t *) &tid_a, NULL, (void *) Thread1, NULL);
78 ret = pthread_create((pthread_t *) &tid_b, NULL, (void *) Thread2, NULL);
  /cts/hostsidetests/security/securityPatch/CVE-2016-8427/
poc.c 70 pthread_create(&th, 0, thr, (void*)i);
74 pthread_create(&th, 0, thr, (void*)i);
  /external/compiler-rt/test/asan/TestCases/Posix/
halt_on_error-signals.c 91 CHECK_CALL(pthread_create(&receiver_tid, 0, receiver, 0), "start thread");
92 CHECK_CALL(pthread_create(&sender_tid, 0, sender, 0), "start thread");
  /external/compiler-rt/test/tsan/
load_shared_lib.cc 48 pthread_create(&t1, NULL, access_callback, (void*)1);
49 pthread_create(&t2, NULL, access_callback, NULL);
signal_reset.cc 62 pthread_create(&th[0], 0, busy, 0);
63 pthread_create(&th[1], 0, reset, 0);
  /external/elfutils/tests/
dwfl-proc-attach.c 80 if ((err = pthread_create (&thread1, NULL, sleeper, NULL)) != 0)
82 if ((err = pthread_create (&thread2, NULL, sleeper, NULL)) != 0)
  /external/google-breakpad/src/client/solaris/handler/
exception_handler_test.cc 80 pthread_create(&h, NULL, thread_crash, NULL);
88 pthread_create(&h, NULL, thread_main, NULL);
  /external/linux-kselftest/tools/testing/selftests/sync/
sync_stress_parallelism.c 93 pthread_create(&a, NULL, (void *(*)(void *))
96 pthread_create(&b, NULL, (void *(*)(void *))
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_destroy/
3-1.c 47 if (pthread_create(&prod, NULL, producer, (void *)cnt) != 0) {
48 perror("pthread_create");
51 if (pthread_create(&cons, NULL, consumer, (void *)cnt) != 0) {
52 perror("pthread_create");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_init/
3-1.c 47 if (pthread_create(&prod, NULL, producer, (void *)cnt) != 0) {
48 perror("pthread_create");
51 if (pthread_create(&cons, NULL, consumer, (void *)cnt) != 0) {
52 perror("pthread_create");
  /external/valgrind/drd/tests/
pth_create_chain.c 27 pthread_create(&s_thread[thread_count], &attr, thread_func,
51 pthread_create(&s_thread[thread_count], &attr, thread_func,
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/helgrind/tests/
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);
tls_threads.c 69 pthread_create(&threads[curthread++], NULL, level2, NULL);
88 pthread_create(&threads[curthread++], NULL, level1, NULL);
  /external/valgrind/none/tests/darwin/
bug228343.c 53 pthread_create(&w_1, NULL, Worker, NULL);
54 pthread_create(&w_2, NULL, Worker, NULL);
  /external/valgrind/none/tests/
pth_cancel2.c 82 pthread_create(&io_thread,
86 pthread_create(&killer_thread,
  /external/valgrind/none/tests/x86/
yield.c 57 pthread_create(&a, NULL, spinner, NULL);
58 pthread_create(&b, NULL, rep_nopper, NULL);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_posix.cc 63 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, &k1), 0);
64 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, &k2), 0);
66 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, &k3), 0);
84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread,
134 EXPECT_EQ(pthread_create(&th, 0, cond_thread, &ctx), 0);

Completed in 1361 milliseconds

<<11121314151617181920>>