/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/drd/tests/ |
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/ |
free_is_write.c | 32 pthread_create(&tid, NULL, thread_func, NULL);
|
pth_destroy_cond.c | 29 pthread_create(&thread, NULL, ThreadFunction, (void*) 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);
|
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);
|
/external/valgrind/main/none/tests/ |
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]))
|
pth_cancel2.c | 82 pthread_create(&io_thread, 86 pthread_create(&killer_thread,
|
/external/valgrind/main/none/tests/s390x/ |
ex_clone.c | 42 pthread_create(&thread, NULL, threadfunc, NULL);
|
/system/core/debuggerd/ |
crasher.c | 88 pthread_create(&thr, &attr, noisy, (void*) 'A'); 89 pthread_create(&thr, &attr, noisy, (void*) 'B'); 90 pthread_create(&thr, &attr, noisy, (void*) 'C'); 103 pthread_create(&t, NULL, thread_callback, (void*) arg);
|
/system/extras/tests/bionic/libc/other/ |
test_thread_max.c | 53 if (pthread_create( &thread, &attr, thread_func, (void*)(long)count ) < 0) {
|
/bionic/tests/ |
pthread_test.cpp | 84 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, NULL)); 89 TEST(pthread, pthread_create) { 93 ASSERT_EQ(0, pthread_create(&t, NULL, IdFn, expected_result)); 106 ASSERT_EQ(EAGAIN, pthread_create(&t, &attributes, IdFn, NULL)); 111 ASSERT_EQ(0, pthread_create(&t1, NULL, SleepFn, reinterpret_cast<void*>(5))); 126 ASSERT_EQ(0, pthread_create(&t1, NULL, SpinFn, &done)); 130 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1))); 155 ASSERT_EQ(0, pthread_create(&t1, NULL, JoinFn, reinterpret_cast<void*>(pthread_self()))); 184 ASSERT_EQ(0, pthread_create(&signal_thread, NULL, SignalHandlerFn, &received_signal)); 229 ASSERT_EQ(0, pthread_create(&t1, NULL, SleepFn, reinterpret_cast<void*>(5))) [all...] |
/external/valgrind/main/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 | 64 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, k[0]), 0); 65 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, k[1]), 0); 67 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, k[2]), 0); 84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread, 129 EXPECT_EQ(pthread_create(&th, 0, cond_thread, &ctx), 0);
|
/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);
|