Searched defs:timeout (Results 1 - 11 of 11) sorted by relevance

/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/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 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 455 milliseconds