HomeSort by relevance Sort by last modified time
    Searched full:pthread_create (Results 1 - 25 of 1067) 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);
pth_stackalign.c 21 if ((e = pthread_create(&t, NULL, thread_main, NULL)) != 0)
23 fprintf(stderr, "pthread_create: %s\n", strerror(e));
  /external/valgrind/main/drd/tests/
pth_create_glibc_2_0.c 2 * Test program that invokes pthread_create@GLIBC_2.0().
4 * Note: pthread_create@GLIBC_2.0() is only available in 32-bit glibc versions,
16 __asm__(".symver pthread_create_glibc_2_0, pthread_create@GLIBC_2.0");
33 fprintf(stderr, "pthread_create() failed.\n");
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");
  /external/valgrind/main/helgrind/tests/
hg01_all_ok.c 25 pthread_create(&a, NULL, th, NULL);
26 pthread_create(&b, NULL, th, NULL);
hg04_race.c 19 pthread_create(&a, NULL, th, NULL);
21 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);
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/compiler-rt/lib/tsan/lit_tests/
static_init5.cc 20 pthread_create(&t, 0, AsyncInit, (void*)(long)rand());
35 pthread_create(&t[0], 0, Thread1, 0);
36 pthread_create(&t[1], 0, Thread1, 0);
static_init6.cc 20 pthread_create(&t, 0, AsyncInit, (void*)(long)rand());
35 pthread_create(&t[0], 0, Thread1, 0);
36 pthread_create(&t[1], 0, Thread1, 0);
atomic_stack.cc 20 pthread_create(&t[0], NULL, Thread1, NULL);
21 pthread_create(&t[1], NULL, Thread2, NULL);
blacklist.cc 23 pthread_create(&t[0], NULL, Thread1, NULL);
24 pthread_create(&t[1], NULL, Blacklisted_Thread2, NULL);
simple_race.c 19 pthread_create(&t[0], NULL, Thread1, NULL);
20 pthread_create(&t[1], NULL, Thread2, NULL);
simple_race.cc 19 pthread_create(&t[0], NULL, Thread1, NULL);
20 pthread_create(&t[1], NULL, Thread2, NULL);
stack_race2.cc 14 pthread_create(&t, 0, Thread2, &Var);
22 pthread_create(&t, 0, Thread, 0);
static_init1.cc 20 pthread_create(&t[0], 0, Thread, 0);
21 pthread_create(&t[1], 0, Thread, 0);
suppressions_global.cc 19 pthread_create(&t[0], NULL, Thread1, NULL);
20 pthread_create(&t[1], NULL, Thread2, NULL);
tls_race2.cc 14 pthread_create(&t, 0, Thread2, &Var);
22 pthread_create(&t, 0, Thread, 0);
inlined_memcpy_race.cc 29 pthread_create(&t[0], NULL, MemCpyThread, x);
30 pthread_create(&t[1], NULL, MemSetThread, x);
34 pthread_create(&t[0], NULL, MemMoveThread, y);
35 pthread_create(&t[1], NULL, MemSetThread, y);
race_on_heap.cc 27 pthread_create(&t[0], 0, AllocThread, 0);
30 pthread_create(&t[0], 0, Thread1, (char*)p + 16);
31 pthread_create(&t[1], 0, Thread2, (char*)p + 16);
46 // CHECK: #0 pthread_create
thread_leak.c 11 pthread_create(&t, 0, Thread, 0);
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
init-order-pthread-create.cc 1 // Check that init-order checking is properly disabled if pthread_create is
16 pthread_create(&t, 0, run, input);

Completed in 81 milliseconds

1 2 3 4 5 6 7 8 91011>>