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

<<11121314151617181920>>

  /external/valgrind/helgrind/tests/
hg03_inherit.c 44 pthread_create(&a, NULL, t1, (void *)&shared[0]);
46 pthread_create(&b, NULL, t2, (void *)&shared[1]);
bar_bad.c 53 pthread_create(&thr1, NULL, child1, (void*)bar3);
65 pthread_create(&thr2, NULL, child1, (void*)bar4);
  /external/valgrind/memcheck/tests/solaris/
door_kill.c 39 res = pthread_create(&thread, NULL, my_server_thread, NULL);
42 perror("pthread_create");
  /external/valgrind/none/tests/
tls.c 96 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
97 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
thread-exits.c 72 ret = pthread_create(&t, NULL, thr, NULL);
74 printf("pthread_create failed: %s\n", strerror(ret));
120 pthread_create(&pth, NULL, maker, NULL);
  /external/valgrind/none/tests/x86/
yield.c 57 pthread_create(&a, NULL, spinner, NULL);
58 pthread_create(&b, NULL, rep_nopper, NULL);
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_freebsd_arm.c 61 err = pthread_create(&p, &attr, threadentry, ts);
66 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_freebsd_arm.c 61 err = pthread_create(&p, &attr, threadentry, ts);
66 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
  /bionic/tests/
semaphore_test.cpp 81 ASSERT_EQ(0, pthread_create(&t1, NULL, SemWaitThreadFn, &s));
82 ASSERT_EQ(0, pthread_create(&t2, NULL, SemWaitThreadFn, &s));
83 ASSERT_EQ(0, pthread_create(&t3, NULL, SemWaitThreadFn, &s));
196 ASSERT_EQ(0, pthread_create(&thread, nullptr, SemWaitEINTRThreadFn, &s));
219 ASSERT_EQ(0, pthread_create(&thread, nullptr, SemWaitEINTRThreadFn, &s));
  /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);
  /external/valgrind/
glibc-2.3.supp 240 fun:pthread_create
247 fun:pthread_create
254 fun:pthread_create
261 fun:pthread_create@@GLIBC_2.1
268 fun:pthread_create@@GLIBC_2.1
275 fun:pthread_create@@GLIBC_2.1
293 LinuxThreads: write/pthread_create
296 fun:pthread_create@@GLIBC_2.1
299 LinuxThreads: write/pthread_create 2
303 fun:pthread_create@@GLIBC_2.
    [all...]
  /art/runtime/
java_vm_ext_test.cc 91 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
103 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
118 CHECK_PTHREAD_CALL(pthread_create, (&pthread, &attr, attach_current_thread_callback,
  /bionic/benchmarks/
pthread_benchmark.cpp 131 pthread_create(&thread, NULL, IdleThread, NULL);
148 pthread_create(&thread, NULL, RunThread, &state);
165 pthread_create(&thread, NULL, ExitThread, &state);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_pthread_wrappers.h 26 # define PTHREAD_CREATE(a, b, c, d) ASSERT_EQ(0, pthread_create(a, b, c, d))
44 inline void PTHREAD_CREATE(pthread_t *thread, void *attr,
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mutex_test.cc 101 pthread_create(&threads[i], 0, write_mutex_thread<Mutex>, &data);
111 pthread_create(&threads[i], 0, read_mutex_thread<Mutex>, &data);
121 pthread_create(&threads[i], 0, write_mutex_thread<SpinMutex>, &data);
  /external/valgrind/gdbserver_tests/
t.c 126 pthread_create(&ebbr, NULL, brussels_fn, NULL);
127 pthread_create(&egll, NULL, london_fn, NULL);
128 pthread_create(&zzzz, NULL, petaouchnok_fn, NULL);
  /external/compiler-rt/lib/asan/tests/
asan_mac_test.cc 30 PTHREAD_CREATE(&child, NULL, CFAllocatorDefaultDoubleFree, NULL);
56 PTHREAD_CREATE(&th1, NULL, CFAllocatorAllocateToGlob, NULL);
58 PTHREAD_CREATE(&th2, NULL, CFAllocatorDeallocateFromGlob, NULL);
178 PTHREAD_CREATE(&workers[i], 0, MallocIntrospectionLockWorker, 0);
180 PTHREAD_CREATE(&forker, 0, MallocIntrospectionLockForker, 0);
200 PTHREAD_CREATE(&th, NULL, TSDAllocWorker, &test_key);
  /external/compiler-rt/test/asan/TestCases/Posix/
deep_thread_stack.cc 31 pthread_create(&thread, NULL, (callback_type)function, NULL);
38 pthread_create(&runner, NULL, RunnerThread, (void*)function);
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/
signal_recursive.cc 114 if (pthread_create(&busy_thread, NULL, &BusyThread, NULL) != 0)
115 fail("pthread_create failed");
  /external/curl/docs/examples/
multithread.c 61 int pthread_create(pthread_t *new_thread_ID,
76 error = pthread_create(&tid[i],
  /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/
minidump_test.cc 66 if (pthread_create(&reporter_thread, NULL, Reporter, NULL) == 0) {
69 perror("pthread_create");
  /external/valgrind/drd/tests/
pth_inconsistent_cond_wait.c 118 PTH_CALL(pthread_create(&tid1, 0, &thread_func, &s_mutex1));
119 PTH_CALL(pthread_create(&tid2, 0, &thread_func, &s_mutex2));
std_list.cpp 86 err = pthread_create(&thread1, NULL, &func1, &instance1);
89 err = pthread_create(&thread2, NULL, &func2, &instance2);

Completed in 637 milliseconds

<<11121314151617181920>>