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

1 2 34 5 6 7 8 91011>>

  /bionic/tests/
pthread_test.cpp 71 return reinterpret_cast<void*>(pthread_join(reinterpret_cast<pthread_t>(arg), NULL));
86 ASSERT_EQ(0, pthread_join(t, &result));
96 ASSERT_EQ(0, pthread_join(t, &result));
117 // ...pthread_join should fail.
119 ASSERT_EQ(EINVAL, pthread_join(t1, &result));
132 sleep(1); // (Give t2 a chance to call pthread_join.)
142 ASSERT_EQ(0, pthread_join(t2, &join_result));
148 ASSERT_EQ(EDEADLK, pthread_join(pthread_self(), &result));
191 ASSERT_EQ(0, pthread_join(signal_thread, &join_result));
322 ASSERT_EQ(ESRCH, pthread_join(dead_thread, &result))
    [all...]
  /external/compiler-rt/lib/tsan/lit_tests/
load_shared_lib.cc 26 pthread_join(t1, NULL);
27 pthread_join(t2, NULL);
memcpy_race.cc 30 pthread_join(t[0], NULL);
31 pthread_join(t[1], NULL);
mop_with_offset.cc 27 pthread_join(t[0], NULL);
28 pthread_join(t[1], NULL);
mop_with_offset2.cc 27 pthread_join(t[0], NULL);
28 pthread_join(t[1], NULL);
mutexset1.cc 34 pthread_join(t[0], NULL);
35 pthread_join(t[1], NULL);
mutexset2.cc 34 pthread_join(t[0], NULL);
35 pthread_join(t[1], NULL);
mutexset3.cc 41 pthread_join(t[0], NULL);
42 pthread_join(t[1], NULL);
mutexset4.cc 41 pthread_join(t[0], NULL);
42 pthread_join(t[1], NULL);
mutexset5.cc 42 pthread_join(t[0], NULL);
43 pthread_join(t[1], NULL);
mutexset7.cc 29 pthread_join(t[0], NULL);
30 pthread_join(t[1], NULL);
mutexset8.cc 35 pthread_join(t[0], NULL);
36 pthread_join(t[1], NULL);
race_on_mutex.c 30 pthread_join(t[0], NULL);
31 pthread_join(t[1], NULL);
race_with_finished_thread.cc 31 pthread_join(t[0], NULL);
32 pthread_join(t[1], NULL);
tsan-vs-gvn.cc 32 pthread_join(t[0], NULL);
33 pthread_join(t[1], NULL);
benign_race.cc 35 pthread_join(t, 0);
global_race.cc 18 pthread_join(t, 0);
ignore_race.cc 27 pthread_join(t, 0);
  /external/valgrind/main/drd/tests/
pth_cancel_locked.stderr.exp-darwin 3 at 0x........: pthread_join (drd_pthread_intercepts.c:?)
10 at 0x........: pthread_join (drd_pthread_intercepts.c:?)
  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked1.c 39 if (pthread_join(child1, NULL)) {
44 if (pthread_join(child2, NULL)) {
locked_vs_unlocked3.c 56 r= pthread_join(child1, NULL); assert(!r);
57 r= pthread_join(child2, NULL); assert(!r);
  /external/valgrind/main/none/tests/
pth_cancel2.c 91 pthread_join(io_thread, NULL);
93 pthread_join(killer_thread,NULL);
pth_once.c 20 * exit of the threads using the pthread_join() operation.
76 pthread_join(threads[thread_num], NULL);
  /external/llvm/test/CodeGen/Thumb/
2007-05-05-InvalidPushPop.ll 26 %tmp4 = call i32 @pthread_join( i32 %tmp2, i8** %ret3 ) ; <i32> [#uses=0]
31 %tmp11 = call i32 @pthread_join( i32 %tmp9, i8** %ret3 ) ; <i32> [#uses=0]
39 declare i32 @pthread_join(i32, i8**)
  /external/chromium_org/third_party/re2/util/
thread.cc 37 pthread_join(pid_, &val);

Completed in 160 milliseconds

1 2 34 5 6 7 8 91011>>