Searched refs:timeout (Results 1 - 17 of 17) sorted by relevance

/bionic/libc/private/
H A Dbionic_futex.h33 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 extern int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout);
/bionic/libc/unistd/
H A Dpselect.c34 const struct timespec* timeout, const sigset_t* sigmask)
43 if (timeout != NULL) {
45 tv.tv_sec = timeout->tv_sec;
46 tv.tv_usec = (timeout->tv_nsec + 999)/1000; // round up
33 pselect(int n, fd_set* readfds, fd_set* writefds, fd_set* errfds, const struct timespec* timeout, const sigset_t* sigmask) argument
/bionic/libc/arch-sh/bionic/
H A Datomics_sh.c92 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout) argument
94 return futex(ftx, FUTEX_WAIT, val, (void *)timeout, NULL, 0);
107 int __futex_syscall4(volative void *ftx, int op, int val, const struct timespec *timeout) argument
109 return futex(ftx, op, val, (void *)timeout, NULL, 0);
/bionic/libc/include/sys/
H A Datomics.h41 int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout);
H A Dselect.h42 const struct timespec *timeout, const sigset_t *sigmask);
H A Depoll.h67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
H A Dlinux-unistd.h145 int __rt_sigtimedwait (const sigset_t *set, struct siginfo_t *info, struct timespec_t *timeout, size_t sigset_size);
200 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
/bionic/libc/kernel/common/linux/hdlc/
H A Dioctl.h54 unsigned int timeout; member in struct:__anon248
/bionic/libc/kernel/common/linux/
H A Dusbdevice_fs.h25 __u32 timeout; member in struct:usbdevfs_ctrltransfer
32 unsigned int timeout; member in struct:usbdevfs_bulktransfer
H A Dmsm_kgsl.h101 unsigned int timeout; member in struct:kgsl_device_waittimestamp
H A Dfd.h102 unsigned long timeout; member in struct:floppy_drive_params
H A Dblkdev.h170 unsigned int timeout; member in struct:request
H A Dcdrom.h190 int timeout; member in struct:cdrom_generic_command
/bionic/libc/kernel/common/linux/sunrpc/
H A Dclnt.h67 #define cl_timeout cl_xprt->timeout
H A Dxprt.h99 struct rpc_timeout timeout; member in struct:rpc_xprt
/bionic/libc/netbsd/resolv/
H A Dres_send.c871 struct timespec now, timeout, finish; local
953 timeout = evConsTime((long)seconds, 0L);
954 finish = evAddTime(now, timeout);
962 timeout = evSubTime(finish, now);
964 timeout = evConsTime(0L, 0L);
965 n = pselect(s + 1, &dsmask, NULL, NULL, &timeout, NULL);
967 Dprint(statp->options & RES_DEBUG, (stdout, ";; timeout\n"));
/bionic/libc/bionic/
H A Dpthread.c63 int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout) argument
65 return __futex_syscall4(ftx, pshared ? FUTEX_WAIT : FUTEX_WAIT_PRIVATE, val, timeout);

Completed in 197 milliseconds