/bionic/tests/ |
D | bug_26110743_test.cpp | 55 ASSERT_EQ(0, pthread_join(t, &result)); in TEST() 70 ASSERT_EQ(0, pthread_join(t, &result)); in TEST() 100 ASSERT_EQ(0, pthread_join(t, &result)); in TEST() 115 ASSERT_EQ(0, pthread_join(t, &result)); in TEST()
|
D | pthread_test.cpp | 177 ASSERT_EQ(0, pthread_join(t, &result)); in TEST() 233 return reinterpret_cast<void*>(pthread_join(reinterpret_cast<pthread_t>(arg), nullptr)); in JoinFn() 247 ASSERT_EQ(0, pthread_join(t, nullptr)); in MakeDeadThread() 257 ASSERT_EQ(0, pthread_join(t, &result)); in TEST() 281 ASSERT_EQ(EINVAL, pthread_join(t1, nullptr)); in TEST() 307 ASSERT_EQ(0, pthread_join(t2, &join_result)); in TEST() 312 ASSERT_EQ(EDEADLK, pthread_join(pthread_self(), nullptr)); in TEST() 347 pthread_join(main_thread, nullptr); in thread_fn() 402 ASSERT_EQ(0, pthread_join(signal_thread, &join_result)); in TEST() 443 ASSERT_EQ(0, pthread_join(signal_thread, &join_result)); in TEST() [all …]
|
D | semaphore_test.cpp | 90 ASSERT_EQ(0, pthread_join(t1, &result)); in TEST() 91 ASSERT_EQ(0, pthread_join(t2, &result)); in TEST() 92 ASSERT_EQ(0, pthread_join(t3, &result)); in TEST() 230 ASSERT_EQ(0, pthread_join(thread, &result)); in TEST() 253 ASSERT_EQ(0, pthread_join(thread, &result)); in TEST()
|
D | __cxa_thread_atexit_test.cpp | 49 ASSERT_EQ(0, pthread_join(t, nullptr)); in TEST() 123 ASSERT_EQ(0, pthread_join(t, nullptr)); in TEST()
|
D | android_unsafe_frame_pointer_chase_test.cpp | 100 ASSERT_EQ(0, pthread_join(t, &retval)); in TEST() 148 ASSERT_EQ(0, pthread_join(t, &retval)); in TEST()
|
D | stdatomic_test.cpp | 251 ASSERT_EQ(0, pthread_join(t1, &result)); in TEST() 253 ASSERT_EQ(0, pthread_join(t2, &result)); in TEST()
|
D | stack_protector_test.cpp | 83 ASSERT_EQ(0, pthread_join(t, &result)); in TEST()
|
D | leak_test.cpp | 119 ASSERT_EQ(0, pthread_join(thread, nullptr)); in TEST()
|
D | pty_test.cpp | 162 ASSERT_EQ(0, pthread_join(thread, nullptr)); in TEST()
|
D | thread_local_test.cpp | 51 error = pthread_join(t, nullptr); in run_one_thread()
|
D | stdio_ext_test.cpp | 237 ASSERT_EQ(0, pthread_join(thread, nullptr)); in TEST()
|
D | sys_socket_test.cpp | 95 ASSERT_EQ(0, pthread_join(thread, &ret_val)); in RunTest()
|
D | unistd_test.cpp | 656 ASSERT_EQ(0, pthread_join(t, &result)); in TEST() 675 ASSERT_EQ(0, pthread_join(t, &result)); in TEST()
|
D | signal_test.cpp | 622 pthread_join(thread, nullptr); in TEST()
|
D | stdlib_test.cpp | 433 pthread_join(main_thread, nullptr); in TestBug57421_child()
|
D | string_test.cpp | 83 ASSERT_EQ(0, pthread_join(t, &result)); in TEST() 149 ASSERT_EQ(0, pthread_join(t, &result)); in TEST()
|
/bionic/benchmarks/ |
D | pthread_benchmark.cpp | 182 pthread_join(thread, nullptr); in BM_pthread_create() 196 pthread_join(thread, nullptr); in BM_pthread_create_and_run() 209 pthread_join(thread, nullptr); in BM_pthread_exit_and_join()
|
D | get_heap_size_benchmark.cpp | 63 int res = pthread_join(t[i], NULL); in BM_mallinfo()
|
/bionic/libc/bionic/ |
D | pthread_detach.cpp | 51 return pthread_join(t, nullptr); in pthread_detach()
|
D | pthread_join.cpp | 37 int pthread_join(pthread_t t, void** return_value) { in pthread_join() function
|
/bionic/libc/include/bits/ |
D | threads_inlines.h | 171 if (pthread_join(__thrd, &__pthread_result) != 0) return thrd_error; in thrd_join()
|
/bionic/tests/headers/posix/ |
D | pthread_h.c | 140 FUNCTION(pthread_join, int (*f)(pthread_t, void**)); in pthread_h()
|
/bionic/libc/include/ |
D | pthread.h | 174 int pthread_join(pthread_t __pthread, void** __return_value_ptr);
|
/bionic/docs/ |
D | status.md | 279 `pthread_getschedparam`/`pthread_setschedparam`, `pthread_join`, and 305 * `pthread_join` calls should be safe anyway, because a joinable thread
|
/bionic/libc/tools/ |
D | posix-2013.txt | 764 pthread_join
|