HomeSort by relevance Sort by last modified time
    Searched defs:thread_func (Results 1 - 25 of 46) sorted by null

1 2

  /external/valgrind/main/drd/tests/
linuxthreads_det.c 14 void* thread_func(void* arg) function
32 pthread_create(&threadid, 0, thread_func, 0);
pth_create_glibc_2_0.c 19 static void* thread_func(void *arg) function
30 result = (*pthread_create_glibc_2_0)(&thr, 0, thread_func, 0);
pth_detached3.c 8 static void* thread_func(void* arg) function
17 pthread_create(&thread, NULL, thread_func, NULL);
boost_thread.cpp 15 static void thread_func(void) function
27 boost::thread t(thread_func);
annotate_hb_race.c 17 static void* thread_func(void* arg) function
35 pthread_create(&tid[0], 0, thread_func, &result[0]);
36 pthread_create(&tid[1], 0, thread_func, &result[1]);
pth_cond_race.c 13 static void* thread_func(void* thread_arg);
46 pthread_create(&threadid, 0, thread_func, 0);
59 static void* thread_func(void* thread_arg) function
pth_create_chain.c 14 static void* thread_func(void* p) function
22 pthread_create(&s_thread[thread_count], 0, thread_func,
42 pthread_create(&s_thread[thread_count], 0, thread_func,
annotate_ignore_rw.c 14 static void* thread_func(void* arg) function
43 pthread_create(&tid, 0, thread_func, 0);
annotate_ignore_write.c 14 static void* thread_func(void* arg) function
43 pthread_create(&tid, 0, thread_func, 0);
annotate_static.cpp 22 static void* thread_func(void*) function
40 pthread_create(&tid, 0, thread_func, NULL);
pth_cond_destroy_busy.c 25 static void* thread_func(void* thread_arg) function
45 pthread_create(&threadid, 0, thread_func, 0);
pth_spinlock.c 20 static void* thread_func(void* arg) function
46 pthread_create(&tid[i], 0, thread_func, 0);
rwlock_race.c 26 static void* thread_func(void* arg) function
47 pthread_create(&thread1, 0, thread_func, 0);
48 pthread_create(&thread2, 0, thread_func, 0);
sigalrm.c 46 void* thread_func(void* thread_arg) function
75 if (pthread_create(&threadid, 0, thread_func, 0) != 0) {
fp_race.c 12 static void* thread_func(void*);
71 pthread_create(&threadid, 0, thread_func, 0);
73 sleep(1); /* Wait until thread_func() finished. */
91 static void* thread_func(void* thread_arg) function
free_is_write.c 20 void* thread_func(void* arg) function
47 result = pthread_create(&thread[i], 0, thread_func, 0);
sem_as_mutex.c 13 static void* thread_func(void*);
72 pthread_create(&threadid, 0, thread_func, 0);
74 sleep(1); /* Wait until thread_func() finished. */
92 static void* thread_func(void* thread_arg) function
  /external/compiler-rt/test/lsan/TestCases/
cleanup_in_tsd_destructor.cc 26 void *thread_func(void *arg) { function
38 res = pthread_create(&thread_id, 0, thread_func, 0);
disabler_in_tsd_destructor.cc 23 void *thread_func(void *arg) { function
33 res = pthread_create(&thread_id, 0, thread_func, 0);
  /external/valgrind/main/helgrind/tests/
free_is_write.c 12 static void* thread_func(void* arg) function
32 pthread_create(&tid, NULL, thread_func, NULL);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_posix_test.cc 38 void *thread_func(void *arg) { function in namespace:__sanitizer
45 ASSERT_EQ(0, pthread_create(&tid, 0, &thread_func,
  /external/lldb/test/functionalities/thread/multi_break/
main.cpp 35 thread_func (void *input) function
56 pthread_create (&thread_1, NULL, thread_func, NULL);
57 pthread_create (&thread_2, NULL, thread_func, NULL);
  /external/lldb/test/functionalities/thread/step_out/
main.cpp 37 thread_func (void *input) function
58 pthread_create (&thread_1, NULL, thread_func, NULL);
59 pthread_create (&thread_2, NULL, thread_func, NULL);
  /system/extras/tests/bionic/libc/common/
test_sem_post.c 45 thread_func(void* arg) function
70 if ( pthread_create( &t[nn], NULL, thread_func, &semaphore ) < 0 ) {
test_semaphore.c 102 typedef void* (*thread_func)(void*); typedef
104 static const thread_func thread_routines[] =

Completed in 1208 milliseconds

1 2