/bionic/libc/include/ |
D | pthread.h | 127 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30); 131 …t* _Nonnull __cond, pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout); 143 … const struct timespec* _Nullable __timeout) __INTRODUCED_IN_64(28); 193 …read_mutex_timedlock(pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout) 205 …medlock_monotonic_np(pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout) 221 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30); 223 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30); 227 …wlock_timedrdlock(pthread_rwlock_t* _Nonnull __rwlock, const struct timespec* _Nullable __timeout); 230 … const struct timespec* _Nullable __timeout) __INTRODUCED_IN(28); 231 …wlock_timedwrlock(pthread_rwlock_t* _Nonnull __rwlock, const struct timespec* _Nullable __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 …medwait(cnd_t* _Nonnull __cond, mtx_t* _Nonnull __mutex, const struct timespec* _Nonnull __timeout) 140 int mtx_timedlock(mtx_t* _Nonnull __mutex, const struct timespec* _Nonnull __timeout) __INTRODUCED_…
|
D | signal.h | 120 …ll __set, siginfo_t* _Nullable __info, const struct timespec* _Nullable __timeout) __INTRODUCED_IN… 121 …ll __set, siginfo_t* _Nullable __info, const struct timespec* _Nullable __timeout) __INTRODUCED_IN…
|
/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 | 98 …et* _Nullable __write_fds, fd_set* _Nullable __exception_fds, struct timeval* _Nullable __timeout); 109 …ds, fd_set* _Nullable __exception_fds, const struct timespec* _Nullable __timeout, const sigset_t*… 122 …ds, fd_set* _Nullable __exception_fds, const struct timespec* _Nullable __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 | 298 …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() 107 const struct timespec* __timeout) { in mtx_timedlock() argument 108 return __bionic_thrd_error(pthread_mutex_timedlock(__mtx, __timeout)); in mtx_timedlock()
|
/bionic/tests/ |
D | pthread_test.cpp | 1132 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedrdlock_timeout_helper() argument 1170 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1171 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST() 1181 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1182 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST() 1200 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedwrlock_timeout_helper() argument 1238 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1239 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST() 1249 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument 1250 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST() [all …]
|