Home
last modified time | relevance | path

Searched refs:epfd (Results 51 - 68 of 68) sorted by relevance

123

/kernel/linux/linux-6.6/arch/arm/include/asm/
H A Dsyscalls.h28 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd,
/kernel/linux/linux-6.6/arch/arm/kernel/
H A Dsys_oabi-compat.c285 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd, in sys_oabi_epoll_ctl() argument
298 return do_epoll_ctl(epfd, op, fd, &kernel, false); in sys_oabi_epoll_ctl()
301 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd, in sys_oabi_epoll_ctl() argument
/kernel/liteos_a/syscall/
H A Dlos_syscall.h295 extern int SysEpollCtl(int epfd, int op, int fd, struct epoll_event *ev);
296 extern int SysEpollWait(int epfd, struct epoll_event *evs, int maxevents, int timeout);
297 extern int SysEpollPwait(int epfd, struct epoll_event *evs, int maxevents, int timeout, const sigset_t *mask);
/third_party/libcoap/include/coap3/
H A Dcoap_net_internal.h174 int epfd; /**< External FD for epoll */ member
/kernel/linux/linux-5.10/tools/testing/selftests/filesystems/epoll/
H A Depoll_wakeup_test.c3148 int epfd; member
3179 ret = epoll_pwait(ctx->epfd, &e, 1, 2000, &sigmask); in epoll60_wait_thread()
3223 ctx.epfd = epoll_create1(0); in TEST()
3224 ASSERT_GE(ctx.epfd, 0); in TEST()
3233 ASSERT_EQ(epoll_ctl(ctx.epfd, EPOLL_CTL_ADD, ctx.evfd[i], &e), 0); in TEST()
3282 close(ctx.epfd); in TEST()
3286 int epfd; member
3306 n = epoll_wait(ctx->epfd, events, 1, 11); in epoll61_epoll_with_timeout()
3324 epoll_wait(ctx->epfd, events, 1, -1); in epoll61_blocking_epoll()
3334 ctx.epfd in TEST()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/filesystems/epoll/
H A Depoll_wakeup_test.c3163 int epfd; member
3194 ret = epoll_pwait(ctx->epfd, &e, 1, 2000, &sigmask); in epoll60_wait_thread()
3238 ctx.epfd = epoll_create1(0); in TEST()
3239 ASSERT_GE(ctx.epfd, 0); in TEST()
3248 ASSERT_EQ(epoll_ctl(ctx.epfd, EPOLL_CTL_ADD, ctx.evfd[i], &e), 0); in TEST()
3297 close(ctx.epfd); in TEST()
3301 int epfd; member
3321 n = epoll_wait(ctx->epfd, events, 1, 11); in epoll61_epoll_with_timeout()
3339 epoll_wait(ctx->epfd, events, 1, -1); in epoll61_blocking_epoll()
3349 ctx.epfd in TEST()
[all...]
/third_party/libcoap/src/
H A Dcoap_net.c456 return context->epfd; in coap_context_get_coap_fd()
492 c->epfd = epoll_create1(0); in coap_new_context()
493 if (c->epfd == -1) { in coap_new_context()
499 if (c->epfd != -1) { in coap_new_context()
516 ret = epoll_ctl(c->epfd, EPOLL_CTL_ADD, c->eptimerfd, &event); in coap_new_context()
635 ret = epoll_ctl(context->epfd, EPOLL_CTL_DEL, context->eptimerfd, &event); in coap_free_context()
644 if (context->epfd != -1) { in coap_free_context()
645 close(context->epfd); in coap_free_context()
646 context->epfd = -1; in coap_free_context()
H A Dcoap_io.c499 ret = epoll_ctl(context->epfd, EPOLL_CTL_DEL, sock->fd, &event);
563 ret = epoll_ctl(context->epfd, EPOLL_CTL_ADD, sock->fd, &event);
598 ret = epoll_ctl(context->epfd, EPOLL_CTL_MOD, sock->fd, &event);
1751 nfds = epoll_wait(ctx->epfd, events, COAP_MAX_EPOLL_EVENTS, etimeout);
/kernel/linux/linux-6.6/include/linux/
H A Dsyscalls.h362 asmlinkage long sys_epoll_ctl(int epfd, int op, int fd,
364 asmlinkage long sys_epoll_pwait(int epfd, struct epoll_event __user *events,
368 asmlinkage long sys_epoll_pwait2(int epfd, struct epoll_event __user *events,
1045 asmlinkage long sys_epoll_wait(int epfd, struct epoll_event __user *events,
H A Dcompat.h585 asmlinkage long compat_sys_epoll_pwait(int epfd,
590 asmlinkage long compat_sys_epoll_pwait2(int epfd,
/foundation/communication/wifi/wifi/base/cRPC/src/
H A Dserver.c227 int retval = epoll_wait(loop->epfd, loop->epEvents, loop->setSize, -1); in RunRpcLoop()
/third_party/rust/crates/libc/src/unix/redox/
H A Dmod.rs1040 epfd: ::c_int, in epoll_wait()
1045 pub fn epoll_ctl(epfd: ::c_int, op: ::c_int, fd: ::c_int, event: *mut ::epoll_event) in epoll_ctl()
/kernel/linux/linux-5.10/include/linux/
H A Dsyscalls.h384 asmlinkage long sys_epoll_ctl(int epfd, int op, int fd,
386 asmlinkage long sys_epoll_pwait(int epfd, struct epoll_event __user *events,
1137 asmlinkage long sys_epoll_wait(int epfd, struct epoll_event __user *events,
H A Dcompat.h503 asmlinkage long compat_sys_epoll_pwait(int epfd,
/third_party/rust/crates/libc/src/unix/solarish/
H A Dmod.rs2955 epfd: ::c_int, in epoll_pwait()
2965 epfd: ::c_int, in epoll_wait()
2970 pub fn epoll_ctl(epfd: ::c_int, op: ::c_int, fd: ::c_int, event: *mut ::epoll_event) in epoll_ctl()
/third_party/rust/crates/libc/src/unix/linux_like/linux/
H A Dmod.rs4018 epfd: ::c_int, in epoll_pwait()
4124 epfd: ::c_int, in epoll_wait()
4129 pub fn epoll_ctl(epfd: ::c_int, op: ::c_int, fd: ::c_int, event: *mut ::epoll_event) in epoll_ctl()
/third_party/rust/crates/libc/src/unix/linux_like/android/
H A Dmod.rs3226 epfd: ::c_int, in epoll_wait()
3231 pub fn epoll_ctl(epfd: ::c_int, op: ::c_int, fd: ::c_int, event: *mut ::epoll_event) in epoll_ctl()
/kernel/linux/linux-5.10/io_uring/
H A Dio_uring.c619 int epfd; member
4470 req->epoll.epfd = READ_ONCE(sqe->fd); in io_epoll_ctl_prep()
4495 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock); in io_epoll_ctl()

Completed in 65 milliseconds

123