/external/llvm-libc/src/__support/threads/ |
D | thread.h | 36 union ThreadReturnValue { union 39 constexpr ThreadReturnValue() : posix_retval(nullptr) {} in ThreadReturnValue() function 40 constexpr ThreadReturnValue(int r) : stdc_retval(r) {} in ThreadReturnValue() function 41 constexpr ThreadReturnValue(void *r) : posix_retval(r) {} in ThreadReturnValue() function 109 ThreadReturnValue retval; 177 ThreadReturnValue retval; in join() 187 ThreadReturnValue retval; in join() 203 int join(ThreadReturnValue &retval); 237 [[noreturn]] void thread_exit(ThreadReturnValue retval, ThreadStyle style);
|
/external/cronet/stable/third_party/llvm-libc/src/src/__support/threads/ |
D | thread.h | 36 union ThreadReturnValue { union 39 constexpr ThreadReturnValue() : posix_retval(nullptr) {} in ThreadReturnValue() function 40 constexpr ThreadReturnValue(int r) : stdc_retval(r) {} in ThreadReturnValue() function 41 constexpr ThreadReturnValue(void *r) : posix_retval(r) {} in ThreadReturnValue() function 109 ThreadReturnValue retval; 177 ThreadReturnValue retval; in join() 187 ThreadReturnValue retval; in join() 203 int join(ThreadReturnValue &retval); 237 [[noreturn]] void thread_exit(ThreadReturnValue retval, ThreadStyle style);
|
/external/cronet/tot/third_party/llvm-libc/src/src/__support/threads/ |
D | thread.h | 36 union ThreadReturnValue { union 39 constexpr ThreadReturnValue() : posix_retval(nullptr) {} in ThreadReturnValue() function 40 constexpr ThreadReturnValue(int r) : stdc_retval(r) {} in ThreadReturnValue() function 41 constexpr ThreadReturnValue(void *r) : posix_retval(r) {} in ThreadReturnValue() function 109 ThreadReturnValue retval; 177 ThreadReturnValue retval; in join() 187 ThreadReturnValue retval; in join() 203 int join(ThreadReturnValue &retval); 237 [[noreturn]] void thread_exit(ThreadReturnValue retval, ThreadStyle style);
|
/external/llvm-libc/src/__support/threads/linux/ |
D | thread.cpp | 188 thread_exit(ThreadReturnValue(attrib->retval.posix_retval), in start_thread() 193 thread_exit(ThreadReturnValue(attrib->retval.stdc_retval), in start_thread() 342 int Thread::join(ThreadReturnValue &retval) { in join() 485 void thread_exit(ThreadReturnValue retval, ThreadStyle style) { in thread_exit()
|
/external/cronet/tot/third_party/llvm-libc/src/src/__support/threads/linux/ |
D | thread.cpp | 188 thread_exit(ThreadReturnValue(attrib->retval.posix_retval), in start_thread() 193 thread_exit(ThreadReturnValue(attrib->retval.stdc_retval), in start_thread() 342 int Thread::join(ThreadReturnValue &retval) { in join() 485 void thread_exit(ThreadReturnValue retval, ThreadStyle style) { in thread_exit()
|
/external/cronet/stable/third_party/llvm-libc/src/src/__support/threads/linux/ |
D | thread.cpp | 188 thread_exit(ThreadReturnValue(attrib->retval.posix_retval), in start_thread() 193 thread_exit(ThreadReturnValue(attrib->retval.stdc_retval), in start_thread() 342 int Thread::join(ThreadReturnValue &retval) { in join() 485 void thread_exit(ThreadReturnValue retval, ThreadStyle style) { in thread_exit()
|
/external/llvm-libc/src/threads/ |
D | thrd_exit.cpp | 22 thread_exit(ThreadReturnValue(retval), ThreadStyle::STDC);
|
/external/cronet/tot/third_party/llvm-libc/src/src/threads/ |
D | thrd_exit.cpp | 22 thread_exit(ThreadReturnValue(retval), ThreadStyle::STDC);
|
/external/cronet/stable/third_party/llvm-libc/src/src/threads/ |
D | thrd_exit.cpp | 22 thread_exit(ThreadReturnValue(retval), ThreadStyle::STDC);
|
/external/cronet/stable/third_party/llvm-libc/src/src/pthread/ |
D | pthread_exit.cpp | 23 LIBC_NAMESPACE::thread_exit(ThreadReturnValue(retval), ThreadStyle::POSIX);
|
/external/llvm-libc/src/pthread/ |
D | pthread_exit.cpp | 23 LIBC_NAMESPACE::thread_exit(ThreadReturnValue(retval), ThreadStyle::POSIX);
|
/external/cronet/tot/third_party/llvm-libc/src/src/pthread/ |
D | pthread_exit.cpp | 23 LIBC_NAMESPACE::thread_exit(ThreadReturnValue(retval), ThreadStyle::POSIX);
|