/Zephyr-Core-3.4.0/tests/posix/eventfd/src/ |
D | _main.c | 39 event = POLLIN; in eventfd_poll_unset_common() 46 event = POLLIN; in eventfd_poll_unset_common() 49 zassert_equal(event, POLLIN, "POLLIN not set"); in eventfd_poll_unset_common() 60 event = POLLIN; in eventfd_poll_unset_common() 71 event = POLLIN; in eventfd_poll_set_common() 79 event = POLLIN; in eventfd_poll_set_common()
|
D | blocking.c | 46 event = POLLIN; in ZTEST_F() 57 pfd.events = POLLIN; in ZTEST_F()
|
/Zephyr-Core-3.4.0/tests/net/socket/socketpair/src/ |
D | poll.c | 32 fds[0].events |= POLLIN; in test_socketpair_poll_timeout_common() 121 fds[0].events |= POLLIN; in ZTEST() 133 zassert_equal(fds[0].revents & POLLIN, POLLIN, "POLLIN not set"); in ZTEST() 215 fds[0].events |= POLLIN; in ZTEST_USER() 219 zassert_not_equal(fds[0].revents & POLLIN, 0, "POLLIN not set"); in ZTEST_USER() 225 fds[1].events |= POLLIN; in ZTEST_USER() 230 zassert_not_equal(fds[1].revents & POLLIN, 0, "POLLIN not set"); in ZTEST_USER() 284 fds[0].events |= POLLIN; in ZTEST() 298 zassert_not_equal(fds[0].revents & POLLIN, 0, "POLLIN not set"); in ZTEST() 348 fds[0].events |= POLLIN; in ZTEST_USER() [all …]
|
/Zephyr-Core-3.4.0/modules/thrift/src/thrift/server/ |
D | TFDServer.cpp | 58 .events = POLLIN, in read_virt() 63 .events = POLLIN, in read_virt() 85 if (pollfds[0].revents & POLLIN) { in read_virt() 97 __ASSERT_NO_MSG(pollfds[1].revents & POLLIN); in read_virt()
|
/Zephyr-Core-3.4.0/tests/net/socket/poll/src/ |
D | main.c | 62 pollfds[0].events = POLLIN; in ZTEST() 64 pollfds[1].events = POLLIN; in ZTEST() 73 zassert_equal(pollfds[0].events, POLLIN, ""); in ZTEST() 76 zassert_equal(pollfds[1].events, POLLIN, ""); in ZTEST() 100 zassert_equal(pollfds[0].events, POLLIN, ""); in ZTEST() 103 zassert_equal(pollfds[1].events, POLLIN, ""); in ZTEST() 104 zassert_equal(pollfds[1].revents, POLLIN, ""); in ZTEST()
|
/Zephyr-Core-3.4.0/samples/net/sockets/echo_client/src/ |
D | echo-client.c | 102 fds[nfds].events = POLLIN; in prepare_fds() 108 fds[nfds].events = POLLIN; in prepare_fds() 114 fds[nfds].events = POLLIN; in prepare_fds() 120 fds[nfds].events = POLLIN; in prepare_fds()
|
/Zephyr-Core-3.4.0/include/zephyr/posix/ |
D | poll.h | 19 #define POLLIN ZSOCK_POLLIN macro
|
/Zephyr-Core-3.4.0/tests/posix/headers/src/ |
D | poll_h.c | 28 zassert_not_equal(-1, POLLIN); in ZTEST()
|
/Zephyr-Core-3.4.0/samples/net/sockets/echo_async/src/ |
D | socket_echo.c | 92 pollfds[i].events = POLLIN; in pollfds_add() 192 if (!(pollfds[i].revents & POLLIN)) { in main()
|
/Zephyr-Core-3.4.0/samples/net/sockets/socketpair/src/ |
D | main.c | 167 fds[i].events = POLLIN; in setup_poll() 190 } else if ((fds[i].revents & POLLIN) != 0) { in handle_poll_events()
|
/Zephyr-Core-3.4.0/drivers/bluetooth/hci/ |
D | userchan.c | 89 struct pollfd pollfd = { .fd = uc_fd, .events = POLLIN }; in uc_ready()
|
/Zephyr-Core-3.4.0/tests/net/socket/getaddrinfo/src/ |
D | main.c | 119 pollfds[0].events = POLLIN; in process_dns() 121 pollfds[1].events = POLLIN; in process_dns() 131 if (pollfds[idx].revents & POLLIN) { in process_dns()
|
/Zephyr-Core-3.4.0/subsys/net/lib/coap/ |
D | coap_client.c | 375 fds.events = POLLIN; in handle_poll() 424 if (!(fds.revents & POLLIN)) { in handle_poll()
|
/Zephyr-Core-3.4.0/include/zephyr/net/ |
D | socket.h | 873 #define POLLIN ZSOCK_POLLIN macro
|
/Zephyr-Core-3.4.0/samples/net/sockets/coap_client/src/ |
D | coap-client.c | 53 fds[nfds].events = POLLIN; in prepare_fds()
|
/Zephyr-Core-3.4.0/subsys/mgmt/updatehub/ |
D | updatehub.c | 110 ctx.fds[ctx.nfds].events = POLLIN; in prepare_fds()
|
/Zephyr-Core-3.4.0/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 730 p.register(in_fp, select.POLLIN)
|