Searched refs:POLLIN (Results 1 – 21 of 21) sorted by relevance
/Zephyr-latest/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 | ioctl.c | 25 event = POLLIN; in ZTEST_F() 66 event = POLLIN; in ZTEST_F()
|
D | blocking.c | 46 event = POLLIN; in ZTEST_F() 57 pfd.events = POLLIN; in ZTEST_F()
|
/Zephyr-latest/modules/thrift/src/thrift/server/ |
D | TFDServer.cpp | 58 .events = POLLIN, in read_virt() 63 .events = POLLIN, in read_virt() 90 if (pollfds[0].revents & POLLIN) { in read_virt() 102 __ASSERT_NO_MSG(pollfds[1].revents & POLLIN); in read_virt()
|
/Zephyr-latest/samples/net/sockets/echo_client/src/ |
D | echo-client.c | 89 fds[nfds].events = POLLIN; in prepare_fds() 94 fds[nfds].events = POLLIN; in prepare_fds() 100 fds[nfds].events = POLLIN; in prepare_fds() 106 fds[nfds].events = POLLIN; in prepare_fds() 112 fds[nfds].events = POLLIN; in prepare_fds()
|
/Zephyr-latest/include/zephyr/posix/ |
D | poll.h | 19 #define POLLIN ZSOCK_POLLIN macro
|
/Zephyr-latest/tests/posix/headers/src/ |
D | poll_h.c | 28 zassert_not_equal(-1, POLLIN); in ZTEST()
|
/Zephyr-latest/subsys/modem/backends/ |
D | modem_backend_tty.c | 32 pd.events = POLLIN; in modem_backend_tty_routine() 44 if (pd.revents & POLLIN) { in modem_backend_tty_routine()
|
/Zephyr-latest/samples/net/sockets/echo_async/src/ |
D | socket_echo.c | 94 pollfds[i].events = POLLIN; in pollfds_add() 196 if (!(pollfds[i].revents & POLLIN)) { in main()
|
/Zephyr-latest/samples/net/sockets/echo_service/src/ |
D | main.c | 202 sockfd_udp[0].events = POLLIN; in main() 231 sockfd_tcp[0].events = POLLIN; in main()
|
/Zephyr-latest/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-latest/tests/net/socket/tls_configurations/src/ |
D | main.c | 136 fds[0].events = POLLIN; in create_socket()
|
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/src/ |
D | main.c | 375 fds.events = POLLIN; in aws_client_loop() 381 if (fds.revents & POLLIN) { in aws_client_loop()
|
/Zephyr-latest/drivers/serial/ |
D | uart_native_tty_bottom.c | 180 struct pollfd pfd = { .fd = fd, .events = POLLIN }; in native_tty_poll_bottom()
|
/Zephyr-latest/samples/net/sockets/http_server/src/ |
D | ws.c | 125 cfg->fds[0].events = POLLIN; in ws_echo_handler()
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | userchan.c | 184 struct pollfd pollfd = { .fd = fd, .events = POLLIN }; in uc_ready()
|
/Zephyr-latest/samples/net/cloud/mqtt_azure/src/ |
D | main.c | 95 fds[0].events = POLLIN; in prepare_fds()
|
/Zephyr-latest/samples/net/mqtt_publisher/src/ |
D | main.c | 120 fds[0].events = POLLIN; in prepare_fds()
|
/Zephyr-latest/samples/net/sockets/coap_client/src/ |
D | coap-client.c | 53 fds[nfds].events = POLLIN; in prepare_fds()
|
/Zephyr-latest/drivers/net/ |
D | nsos_adapt.c | 861 MAP_POLL_EPOLL(POLLIN, EPOLLIN); in nsos_poll_to_epoll_events() 873 MAP_POLL_EPOLL(EPOLLIN, POLLIN); in nsos_epoll_to_poll_events()
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | handlers.py | 943 p.register(in_fp, select.POLLIN)
|