• Home
  • Raw
  • Download

Lines Matching refs:timeout

2065 		struct __kernel_timespec __user *, timeout)  in SYSCALL_DEFINE5()  argument
2070 if (timeout && unlikely(get_timespec64(&ts, timeout))) in SYSCALL_DEFINE5()
2073 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL); in SYSCALL_DEFINE5()
2091 struct __kernel_timespec __user *, timeout, in SYSCALL_DEFINE6() argument
2099 if (timeout && unlikely(get_timespec64(&ts, timeout))) in SYSCALL_DEFINE6()
2109 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL); in SYSCALL_DEFINE6()
2126 struct old_timespec32 __user *, timeout, in SYSCALL_DEFINE6() argument
2134 if (timeout && unlikely(get_old_timespec32(&ts, timeout))) in SYSCALL_DEFINE6()
2145 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL); in SYSCALL_DEFINE6()
2163 struct old_timespec32 __user *, timeout) in SYSCALL_DEFINE5() argument
2168 if (timeout && get_old_timespec32(&t, timeout)) in SYSCALL_DEFINE5()
2171 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL); in SYSCALL_DEFINE5()
2193 struct old_timespec32 __user *, timeout, in COMPAT_SYSCALL_DEFINE6() argument
2201 if (timeout && get_old_timespec32(&t, timeout)) in COMPAT_SYSCALL_DEFINE6()
2211 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL); in COMPAT_SYSCALL_DEFINE6()
2228 struct __kernel_timespec __user *, timeout, in COMPAT_SYSCALL_DEFINE6() argument
2236 if (timeout && get_timespec64(&t, timeout)) in COMPAT_SYSCALL_DEFINE6()
2246 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL); in COMPAT_SYSCALL_DEFINE6()