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

12

/bionic/libc/bionic/
H A Depoll_wait.cpp31 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.cpp33 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 Dsigtimedwait.cpp35 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 Depoll_pwait.cpp35 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 Dndk_cruft.cpp224 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/include/
H A Dpoll.h55 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/netfilter/
H A Dxt_IDLETIMER.h25 __u32 timeout; member in struct:idletimer_tg_info
H A Dxt_CT.h46 char timeout[32]; member in struct:xt_ct_target_info_v1
H A Dxt_set.h70 __u32 timeout; member in struct:xt_set_info_target_v2
86 __u32 timeout; member in struct:xt_set_info_target_v3
/bionic/libc/kernel/uapi/linux/
H A Dpg.h29 int timeout; member in struct:pg_write_hdr
H A Dbsg.h52 __u32 timeout; member in struct:sg_io_v4
H A Dusbdevice_fs.h31 __u32 timeout; member in struct:usbdevfs_ctrltransfer
39 unsigned int timeout; member in struct:usbdevfs_bulktransfer
H A Ddlm_device.h39 __u64 timeout; member in struct:dlm_lock_params
H A Dpps.h72 struct pps_ktime timeout; member in struct:pps_fdata
H A Dtipc.h70 __u32 timeout; member in struct:tipc_subscr
H A Dncp_fs.h79 int timeout; member in struct:ncp_lock_ioctl
/bionic/libc/private/
H A Dbionic_futex.h43 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/libc/kernel/uapi/linux/hdlc/
H A Dioctl.h95 unsigned int timeout; member in struct:__anon344
/bionic/tests/
H A Dfortify_compilation_test.cpp227 timespec timeout; local
231 ppoll(fds, 2, &timeout, NULL);
H A Dsignal_test.cpp340 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));
/bionic/libc/kernel/uapi/drm/
H A Dmsm_drm.h74 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 Dtegra_drm.h50 __u32 timeout; member in struct:drm_tegra_syncpt_wait
121 __u32 timeout; member in struct:drm_tegra_submit
/bionic/libc/dns/resolv/
H A Dres_send.c721 int timeout = (statp->retrans << ns); local
723 timeout /= statp->nscount;
725 if (timeout <= 0) {
726 timeout = 1;
729 __libc_format_log(ANDROID_LOG_DEBUG, "libc", "using timeout of %d sec\n", timeout);
732 return timeout;
948 struct timespec now, timeout, finish; local
960 timeout = evConsTime((long)sec, 0L);
961 finish = evAddTime(now, timeout);
983 struct timespec now, timeout; local
1055 struct timespec now, timeout, finish; local
[all...]
/bionic/libc/kernel/uapi/linux/dvb/
H A Ddmx.h82 __u32 timeout; member in struct:dmx_sct_filter_params
/bionic/libc/kernel/uapi/rdma/
H A Dib_user_cm.h179 __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

Completed in 5296 milliseconds

12