HomeSort by: relevance | last modified time | path
    Searched refs:maxevents (Results 1 - 24 of 24) sorted by relevancy

  /src/lib/libc/sys/
epoll.c 50 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout)
52 return epoll_pwait(epfd, events, maxevents, timeout, NULL);
56 epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout,
68 return epoll_pwait2(epfd, events, maxevents, tsp, sigmask);
  /src/sys/sys/
epoll.h 85 struct epoll_event *events, int maxevents, struct timespec *tsp,
93 int epoll_wait(int epfd, struct epoll_event *events, int maxevents,
95 int epoll_pwait(int epfd, struct epoll_event *events, int maxevents,
97 int epoll_pwait2(int epfd, struct epoll_event *events, int maxevents,
syscallargs.h 3398 syscallarg(int) maxevents;
  /src/sys/compat/netbsd32/
netbsd32_epoll.c 94 syscallarg(int) maxevents;
102 const int maxevents = SCARG(uap, maxevents); local in function:netbsd32_epoll_pwait2
104 if (maxevents <= 0 || maxevents >= EPOLL_MAX_EVENTS)
128 events = kmem_alloc(maxevents * sizeof(*events), KM_SLEEP);
131 maxevents, tsp, ssp);
147 kmem_free(events, maxevents * sizeof(*events));
netbsd32_syscallargs.h 2824 syscallarg(int) maxevents;
netbsd32_systrace_args.c 3749 iarg[2] = SCARG(p, maxevents); /* int */
  /src/sys/kern/
sys_epoll.c 382 struct epoll_event *events, int maxevents, struct timespec *tsp,
396 if (maxevents <= 0 || maxevents > EPOLL_MAX_EVENTS)
421 maxevents, tsp, &k_ops);
447 syscallarg(int) maxevents;
455 const int maxevents = SCARG(uap, maxevents); local in function:sys_epoll_pwait2
457 if (maxevents <= 0 || maxevents >= EPOLL_MAX_EVENTS)
478 events = kmem_alloc(maxevents * sizeof(*events), KM_SLEEP)
    [all...]
kern_event.c 2262 * Scan through the list of events on fp (for a maximum of maxevents),
2268 kqueue_scan(file_t *fp, size_t maxevents, struct kevent *ulistp,
2284 count = maxevents;
2294 *retval = maxevents;
2393 if (count == maxevents) {
2526 *retval = maxevents - count;
systrace_args.c 3932 iarg[2] = SCARG(p, maxevents); /* int */
  /src/sys/compat/linux/common/
linux_misc.c 1868 syscallarg(int) maxevents;
1875 SCARG(&ea, maxevents) = SCARG(uap, maxevents);
1889 struct linux_epoll_event *events, int maxevents,
1899 if (maxevents <= 0 || maxevents > EPOLL_MAX_EVENTS)
1918 eep = kmem_alloc(maxevents * sizeof(*eep), KM_SLEEP);
1920 error = epoll_wait_common(l, retval, epfd, eep, maxevents, tsp,
1935 kmem_free(eep, maxevents * sizeof(*eep));
1949 syscallarg(int) maxevents;
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
linux_syscall_hooks.h 1213 #define __sanitizer_syscall_pre_epoll_wait(epfd, events, maxevents, timeout) \
1215 (long)(maxevents), (long)(timeout))
1216 #define __sanitizer_syscall_post_epoll_wait(res, epfd, events, maxevents, \
1219 (long)(maxevents), (long)(timeout))
1220 #define __sanitizer_syscall_pre_epoll_pwait(epfd, events, maxevents, timeout, \
1223 (long)(epfd), (long)(events), (long)(maxevents), (long)(timeout), \
1225 #define __sanitizer_syscall_post_epoll_pwait(res, epfd, events, maxevents, \
1228 res, (long)(epfd), (long)(events), (long)(maxevents), (long)(timeout), \
2692 long maxevents, long timeout);
2694 long maxevents, long timeout)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_interceptors.cc 856 INTERCEPTOR(int, epoll_wait, int epfd, void *events, int maxevents,
859 int res = REAL(epoll_wait)(epfd, events, maxevents, timeout);
871 INTERCEPTOR(int, epoll_pwait, int epfd, void *events, int maxevents,
874 int res = REAL(epoll_pwait)(epfd, events, maxevents, timeout, sigmask);
  /src/sys/compat/linux/arch/alpha/
linux_syscallargs.h 969 syscallarg(int) maxevents;
1240 syscallarg(int) maxevents;
1424 syscallarg(int) maxevents;
  /src/sys/compat/linux/arch/amd64/
linux_syscallargs.h 931 syscallarg(int) maxevents;
1131 syscallarg(int) maxevents;
1322 syscallarg(int) maxevents;
linux_systrace_args.c 1625 iarg[2] = SCARG(p, maxevents); /* int */
1927 iarg[2] = SCARG(p, maxevents); /* int */
2177 iarg[2] = SCARG(p, maxevents); /* int */
  /src/sys/compat/linux/arch/arm/
linux_syscallargs.h 935 syscallarg(int) maxevents;
1204 syscallarg(int) maxevents;
1400 syscallarg(int) maxevents;
linux_systrace_args.c 1624 iarg[2] = SCARG(p, maxevents); /* int */
2025 iarg[2] = SCARG(p, maxevents); /* int */
2280 iarg[2] = SCARG(p, maxevents); /* int */
  /src/sys/compat/linux/arch/i386/
linux_syscallargs.h 982 syscallarg(int) maxevents;
1251 syscallarg(int) maxevents;
1418 syscallarg(int) maxevents;
linux_systrace_args.c 1687 iarg[2] = SCARG(p, maxevents); /* int */
2088 iarg[2] = SCARG(p, maxevents); /* int */
2308 iarg[2] = SCARG(p, maxevents); /* int */
  /src/sys/compat/linux/arch/m68k/
linux_syscallargs.h 929 syscallarg(int) maxevents;
1203 syscallarg(int) maxevents;
1389 syscallarg(int) maxevents;
  /src/sys/compat/linux/arch/mips/
linux_syscallargs.h 976 syscallarg(int) maxevents;
1250 syscallarg(int) maxevents;
1434 syscallarg(int) maxevents;
  /src/sys/compat/linux/arch/powerpc/
linux_syscallargs.h 873 syscallarg(int) maxevents;
1129 syscallarg(int) maxevents;
1323 syscallarg(int) maxevents;
  /src/sys/compat/linux/arch/aarch64/
linux_syscallargs.h 151 syscallarg(int) maxevents;
1156 syscallarg(int) maxevents;
linux_systrace_args.c 167 iarg[2] = SCARG(p, maxevents); /* int */
1866 iarg[2] = SCARG(p, maxevents); /* int */

Completed in 145 milliseconds