Searched refs:timeout (Results 1 - 25 of 36) 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));
/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.h50 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.h44 const struct timespec* timeout,
48 int result = syscall(__NR_futex, ftx, op, value, timeout, NULL, bitset);
64 static inline int __futex_wait(volatile void* ftx, int value, const struct timespec* timeout) { argument
65 return __futex(ftx, FUTEX_WAIT, value, timeout, 0);
43 __futex(volatile void* ftx, int op, int value, const struct timespec* timeout, int bitset) argument
/bionic/libc/kernel/uapi/linux/hdlc/
H A Dioctl.h95 unsigned int timeout; member in struct:__anon371
/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.h51 __u32 timeout; member in struct:drm_tegra_syncpt_wait
122 __u32 timeout; member in struct:drm_tegra_submit
/bionic/tests/
H A Dfortify_compilation_test.cpp228 timespec timeout; local
232 ppoll(fds, 2, &timeout, NULL);
H A Dsignal_test.cpp342 struct timespec timeout; local
343 timeout.tv_sec = 2;
344 timeout.tv_nsec = 0;
346 ASSERT_EQ(SIGALRM, sigtimedwait(&just_SIGALRM, &info, &timeout));
367 // Wait timeout.
370 struct timespec timeout; local
371 timeout.tv_sec = 0;
372 timeout.tv_nsec = 1000000;
374 ASSERT_EQ(-1, sigtimedwait(&just_SIGALRM, &info, &timeout));
/bionic/libc/dns/resolv/
H A Dres_send.c735 int timeout = (statp->retrans << ns); local
737 timeout /= statp->nscount;
739 if (timeout <= 0) {
740 timeout = 1;
743 __libc_format_log(ANDROID_LOG_DEBUG, "libc", "using timeout of %d sec\n", timeout);
746 return timeout;
844 * determining whether this was really a timeout or e.g. ECONNREFUSED. Since
982 struct timespec now, timeout, finish; local
994 timeout
1017 struct timespec now, timeout; local
1092 struct timespec now, timeout, finish, done; local
[all...]
/bionic/libc/kernel/uapi/linux/dvb/
H A Ddmx.h84 __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
/bionic/libc/kernel/common/scsi/
H A Dsg.h40 unsigned int timeout; member in struct:sg_io_hdr

Completed in 933 milliseconds

12