/bionic/libc/unistd/ |
D | pselect.c | 34 const struct timespec* timeout, const sigset_t* sigmask) in pselect() argument 43 if (timeout != NULL) { in pselect() 45 tv.tv_sec = timeout->tv_sec; in pselect() 46 tv.tv_usec = (timeout->tv_nsec + 999)/1000; // round up in pselect()
|
/bionic/libc/private/ |
D | bionic_futex.h | 33 extern int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); 37 extern int __futex_syscall4(volatile void *ftx, int op, int val, const struct timespec *timeout); 55 …ern int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout);
|
/bionic/libc/arch-sh/bionic/ |
D | atomics_sh.c | 92 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout) in __futex_wait() argument 94 return futex(ftx, FUTEX_WAIT, val, (void *)timeout, NULL, 0); in __futex_wait() 107 int __futex_syscall4(volative void *ftx, int op, int val, const struct timespec *timeout) in __futex_syscall4() argument 109 return futex(ftx, op, val, (void *)timeout, NULL, 0); in __futex_syscall4()
|
/bionic/libc/include/sys/ |
D | atomics.h | 41 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
|
D | select.h | 42 const struct timespec *timeout, const sigset_t *sigmask);
|
D | epoll.h | 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
D | linux-unistd.h | 145 …dwait (const sigset_t *set, struct siginfo_t *info, struct timespec_t *timeout, size_t sigset_s… 200 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/bionic/libc/kernel/common/linux/hdlc/ |
D | ioctl.h | 54 unsigned int timeout; member
|
/bionic/libc/kernel/common/linux/ |
D | usbdevice_fs.h | 25 __u32 timeout; member 32 unsigned int timeout; member
|
D | msm_kgsl.h | 101 unsigned int timeout; member
|
D | fd.h | 102 unsigned long timeout; member
|
D | blkdev.h | 170 unsigned int timeout; member
|
D | cdrom.h | 190 int timeout; member
|
/bionic/libc/kernel/common/linux/sunrpc/ |
D | clnt.h | 67 #define cl_timeout cl_xprt->timeout
|
D | xprt.h | 99 struct rpc_timeout timeout; member
|
/bionic/libc/netbsd/resolv/ |
D | res_send.c | 871 struct timespec now, timeout, finish; in send_dg() local 953 timeout = evConsTime((long)seconds, 0L); in send_dg() 954 finish = evAddTime(now, timeout); in send_dg() 962 timeout = evSubTime(finish, now); in send_dg() 964 timeout = evConsTime(0L, 0L); in send_dg() 965 n = pselect(s + 1, &dsmask, NULL, NULL, &timeout, NULL); in send_dg()
|
/bionic/libc/docs/ |
D | CHANGES.TXT | 202 perform a timed lock (). In case of timeout, it returns EBUSY. 208 but uses a relative timeout instead. Android-specific.
|
D | OVERVIEW.TXT | 321 timers, it'd better handle timeout events directly instead.
|
/bionic/libc/ |
D | SYSCALLS.TXT | 183 …edwait(const sigset_t *set, struct siginfo_t *info, struct timespec_t *timeout, size_t sigset_s… 254 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout) 252,256
|
/bionic/libc/bionic/ |
D | pthread.c | 63 int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout) in __futex_wait_ex() argument 65 return __futex_syscall4(ftx, pshared ? FUTEX_WAIT : FUTEX_WAIT_PRIVATE, val, timeout); in __futex_wait_ex()
|