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

1 2 34 5 6 7 8 91011>>

  /external/valgrind/helgrind/tests/
tc06_two_races.c 26 if (pthread_create(&child, NULL, child_fn, NULL)) {
27 perror("pthread_create");
tc16_byterace.c 22 if (pthread_create(&child, NULL, child_fn, NULL)) {
23 perror("pthread_create");
  /external/valgrind/none/tests/
pth_cancel1.c 43 if (pthread_create(&tid, NULL, thread_main, NULL) != 0)
45 perror("pthread_create");
threaded-fork.c 23 pthread_create( &childthread, NULL, threadmain, (void *)2 );
28 pthread_create( &childthread, NULL, threadmain, 0 );
threadederrno.c 34 pthread_create(&tid2, NULL, &thr2, NULL);
35 pthread_create(&tid3, NULL, &thr3, NULL);
manythreads.c 20 pthread_create(&th, NULL, func, NULL);
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_libinit.c 20 int err = pthread_create(&p, NULL, func, arg);
22 fprintf(stderr, "pthread_create failed: %s", strerror(err));
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_libinit.c 20 int err = pthread_create(&p, NULL, func, arg);
22 fprintf(stderr, "pthread_create failed: %s", strerror(err));
  /external/autotest/client/tests/monotonic_time/src/
threads.c 70 err = pthread_create(&thread->thread, NULL, run_thread, thread);
72 WARN(err, "pthread_create() failed");
100 err = pthread_create(&thread->thread, NULL, func, arg);
102 WARN(err, "pthread_create() failed");
  /external/compiler-rt/test/msan/
pthread_getattr_np_deadlock.cc 17 int res = pthread_create(&t, 0, ThreadFn, 0);
  /external/compiler-rt/test/tsan/
atomic_free.cc 14 pthread_create(&t, 0, Thread, a);
atomic_free2.cc 14 pthread_create(&t, 0, Thread, a);
ignore_lib_lib.h 19 pthread_create(&t, 0, Thread, 0);
race_on_mutex2.c 16 pthread_create(&t, 0, Thread, &Mtx);
thread_detach.c 12 pthread_create(&t, 0, Thread, 0);
thread_leak.c 11 pthread_create(&t, 0, Thread, 0);
thread_leak2.c 11 pthread_create(&t, 0, Thread, 0);
thread_leak3.c 12 pthread_create(&t, 0, Thread, 0);
thread_leak4.c 11 pthread_create(&t, 0, Thread, 0);
tiny_race.c 15 pthread_create(&t, 0, Thread1, 0);
  /external/jemalloc/src/
mutex.c 29 * We intercept pthread_create() calls in order to toggle isthreaded if the
41 pthread_create_fptr = dlsym(RTLD_NEXT, "pthread_create");
44 "\"pthread_create\")\n");
52 pthread_create(pthread_t *__restrict thread, function
  /external/valgrind/drd/tests/
filter_stderr_solaris 3 # Replace stack frame for a thread created by pthread_create():
6 # by 0x........: start_thread (pthread_create.c:123)
9 s/_thrp_setup \(in .*libc.*\)/start_thread \(pthread_create.c:123\)/g;
25 'thr_create' => 'pthread_create',
pth_detached3.c 17 pthread_create(&thread, NULL, thread_func, NULL);
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue6997_linux.c 18 return pthread_create(&thread, NULL, &threadfunc, NULL);
  /prebuilts/go/linux-x86/misc/cgo/test/
issue6997_linux.c 18 return pthread_create(&thread, NULL, &threadfunc, NULL);

Completed in 397 milliseconds

1 2 34 5 6 7 8 91011>>