/bionic/libc/bionic/ |
H A D | sigtimedwait.cpp | 35 int sigtimedwait(const sigset_t* set, siginfo_t* info, const timespec* timeout) { argument 37 return __rt_sigtimedwait(sigset.get(), info, timeout, sizeof(sigset));
|
H A D | epoll_wait.cpp | 31 int epoll_wait(int fd, struct epoll_event* events, int max_events, int timeout) { argument 32 return epoll_pwait(fd, events, max_events, timeout, NULL);
|
H A D | __poll_chk.cpp | 33 extern "C" int __poll_chk(struct pollfd* fds, nfds_t fd_count, int timeout, size_t fds_size) { argument 37 return poll(fds, fd_count, timeout); 40 extern "C" int __ppoll_chk(struct pollfd* fds, nfds_t fd_count, const struct timespec* timeout, const sigset_t* mask, size_t fds_size) { argument 44 return ppoll(fds, fd_count, timeout, mask);
|
H A D | epoll_pwait.cpp | 35 int epoll_pwait(int fd, epoll_event* events, int max_events, int timeout, const sigset_t* ss) { argument 42 return __epoll_pwait(fd, events, max_events, timeout, kernel_ss_ptr, sizeof(kernel_ss));
|
H A D | ndk_cruft.cpp | 224 extern "C" int __futex_wait(volatile void* ftx, int value, const struct timespec* timeout) { argument 225 return __real_futex_wait(ftx, value, timeout);
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
H A D | xt_IDLETIMER.h | 25 __u32 timeout; member in struct:idletimer_tg_info
|
H A D | xt_CT.h | 46 char timeout[32]; member in struct:xt_ct_target_info_v1
|
H A D | xt_set.h | 70 __u32 timeout; member in struct:xt_set_info_target_v2 86 __u32 timeout; member in struct:xt_set_info_target_v3
|
/bionic/libc/include/ |
H A D | poll.h | 55 int poll(struct pollfd* fds, nfds_t fd_count, int timeout) { argument 57 return __poll_chk(fds, fd_count, timeout, __bos(fds)); 61 return __poll_chk(fds, fd_count, timeout, __bos(fds)); 66 return __poll_real(fds, fd_count, timeout); 71 int ppoll(struct pollfd* fds, nfds_t fd_count, const struct timespec* timeout, const sigset_t* mask) { argument 73 return __ppoll_chk(fds, fd_count, timeout, mask, __bos(fds)); 77 return __ppoll_chk(fds, fd_count, timeout, mask, __bos(fds)); 82 return __ppoll_real(fds, fd_count, timeout, mask);
|
/bionic/libc/kernel/uapi/linux/ |
H A D | pg.h | 29 int timeout; member in struct:pg_write_hdr
|
H A D | bsg.h | 52 __u32 timeout; member in struct:sg_io_v4
|
H A D | dlm_device.h | 39 __u64 timeout; member in struct:dlm_lock_params
|
H A D | pps.h | 72 struct pps_ktime timeout; member in struct:pps_fdata
|
H A D | ncp_fs.h | 79 int timeout; member in struct:ncp_lock_ioctl
|
H A D | tipc.h | 70 __u32 timeout; member in struct:tipc_subscr
|
H A D | usbdevice_fs.h | 31 __u32 timeout; member in struct:usbdevfs_ctrltransfer 39 unsigned int timeout; member in struct:usbdevfs_bulktransfer
|
/bionic/libc/private/ |
H A D | bionic_futex.h | 43 static inline __always_inline int __futex(volatile void* ftx, int op, int value, const struct timespec* timeout) { argument 46 int result = syscall(__NR_futex, ftx, op, value, timeout); 62 static inline int __futex_wait(volatile void* ftx, int value, const struct timespec* timeout) { argument 63 return __futex(ftx, FUTEX_WAIT, value, timeout); 66 static inline int __futex_wait_ex(volatile void* ftx, bool shared, int value, const struct timespec* timeout) { argument 67 return __futex(ftx, shared ? FUTEX_WAIT : FUTEX_WAIT_PRIVATE, value, timeout);
|
/bionic/tests/ |
H A D | fortify_compilation_test.cpp | 227 timespec timeout; local 231 ppoll(fds, 2, &timeout, NULL);
|
H A D | signal_test.cpp | 340 struct timespec timeout; local 341 timeout.tv_sec = 2; 342 timeout.tv_nsec = 0; 344 ASSERT_EQ(SIGALRM, sigtimedwait(&just_SIGALRM, &info, &timeout)); 365 // Wait timeout. 368 struct timespec timeout; local 369 timeout.tv_sec = 0; 370 timeout.tv_nsec = 1000000; 372 ASSERT_EQ(-1, sigtimedwait(&just_SIGALRM, &info, &timeout));
|
H A D | fortify_test.cpp | 970 // Set timeout to zero to prevent waiting in poll when fortify test fails. 977 // Set timeout to zero to prevent waiting in ppoll when fortify test fails. 978 timespec timeout; local 979 timeout.tv_sec = timeout.tv_nsec = 0; 980 ASSERT_FORTIFY(ppoll(buf, fd_count, &timeout, NULL));
|
/bionic/libc/kernel/uapi/linux/hdlc/ |
H A D | ioctl.h | 95 unsigned int timeout; member in struct:__anon344
|
/bionic/libc/kernel/uapi/drm/ |
H A D | msm_drm.h | 74 struct drm_msm_timespec timeout; member in struct:drm_msm_gem_cpu_prep 127 struct drm_msm_timespec timeout; member in struct:drm_msm_wait_fence
|
H A D | tegra_drm.h | 50 __u32 timeout; member in struct:drm_tegra_syncpt_wait 121 __u32 timeout; member in struct:drm_tegra_submit
|
/bionic/libc/kernel/uapi/linux/dvb/ |
H A D | dmx.h | 82 __u32 timeout; member in struct:dmx_sct_filter_params
|
/bionic/libc/kernel/uapi/rdma/ |
H A D | ib_user_cm.h | 179 __u8 timeout; member in struct:ib_ucm_mra 194 __u32 timeout; member in struct:ib_ucm_sidr_req 275 __u8 timeout; member in struct:ib_ucm_mra_event_resp
|