/bionic/libc/include/ |
D | pthread.h | 125 const struct timespec* __timeout) __INTRODUCED_IN(30); 129 …cond_timedwait(pthread_cond_t* __cond, pthread_mutex_t* __mutex, const struct timespec* __timeout); 141 const struct timespec* __timeout) __INTRODUCED_IN_64(28); 193 int pthread_mutex_timedlock(pthread_mutex_t* __mutex, const struct timespec* __timeout) 205 int pthread_mutex_timedlock_monotonic_np(pthread_mutex_t* __mutex, const struct timespec* __timeout) 238 const struct timespec* __timeout) __INTRODUCED_IN(30); 240 const struct timespec* __timeout) __INTRODUCED_IN(30); 244 int pthread_rwlock_timedrdlock(pthread_rwlock_t* __rwlock, const struct timespec* __timeout); 247 const struct timespec* __timeout) __INTRODUCED_IN(28); 248 int pthread_rwlock_timedwrlock(pthread_rwlock_t* __rwlock, const struct timespec* __timeout); [all …]
|
D | poll.h | 64 …llfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __timeout, const sigset_t*… 69 …lfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __timeout, const sigset64_…
|
D | threads.h | 112 int cnd_timedwait(cnd_t* __cond, mtx_t* __mutex, const struct timespec* __timeout) 140 int mtx_timedlock(mtx_t* __mutex, const struct timespec* __timeout) __INTRODUCED_IN(30);
|
D | signal.h | 124 int sigtimedwait(const sigset_t* __set, siginfo_t* __info, const struct timespec* __timeout) __INTR… 125 int sigtimedwait64(const sigset64_t* __set, siginfo_t* __info, const struct timespec* __timeout) __…
|
/bionic/libc/bionic/ |
D | recvmsg.cpp | 38 const struct timespec* __timeout); 78 const struct timespec* __timeout) { in recvmmsg() argument 79 int rc = __recvmmsg(__fd, __msgs, __msg_count, __flags, __timeout); in recvmmsg()
|
/bionic/libc/include/sys/ |
D | select.h | 109 …ount, fd_set* __read_fds, fd_set* __write_fds, fd_set* __exception_fds, struct timeval* __timeout); 118 …s, fd_set* __write_fds, fd_set* __exception_fds, const struct timespec* __timeout, const sigset_t*… 129 …s, fd_set* __write_fds, fd_set* __exception_fds, const struct timespec* __timeout, const sigset64_…
|
D | sem.h | 59 …sem_id, struct sembuf* __ops, size_t __op_count, const struct timespec* __timeout) __INTRODUCED_IN…
|
D | socket.h | 304 …d, struct mmsghdr* __msgs, unsigned int __msg_count, int __flags, const struct timespec* __timeout)
|
/bionic/libc/include/bits/ |
D | threads_inlines.h | 76 const struct timespec* __timeout) { in cnd_timedwait() argument 77 return __bionic_thrd_error(pthread_cond_timedwait(__cnd, __mtx, __timeout)); in cnd_timedwait() 108 const struct timespec* __timeout) { in mtx_timedlock() argument 109 return __bionic_thrd_error(pthread_mutex_timedlock(__mtx, __timeout)); in mtx_timedlock()
|
/bionic/tests/ |
D | pthread_test.cpp | 1104 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedrdlock_timeout_helper() argument 1142 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1143 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST() 1153 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1154 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST() 1172 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedwrlock_timeout_helper() argument 1210 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1211 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST() 1221 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1222 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST() [all …]
|