Home
last modified time | relevance | path

Searched refs:pfds (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.4/samples/uhid/
Duhid-example.c391 struct pollfd pfds[2]; in main() local
429 pfds[0].fd = STDIN_FILENO; in main()
430 pfds[0].events = POLLIN; in main()
431 pfds[1].fd = fd; in main()
432 pfds[1].events = POLLIN; in main()
436 ret = poll(pfds, 2, -1); in main()
441 if (pfds[0].revents & POLLHUP) { in main()
445 if (pfds[1].revents & POLLHUP) { in main()
450 if (pfds[0].revents & POLLIN) { in main()
455 if (pfds[1].revents & POLLIN) { in main()
/Linux-v5.4/tools/usb/ffs-aio-example/simple/device_app/
Daio_simple.c169 struct pollfd pfds[1]; in handle_ep0() local
170 pfds[0].fd = ep0; in handle_ep0()
171 pfds[0].events = POLLIN; in handle_ep0()
173 ret = poll(pfds, 1, 0); in handle_ep0()
175 if (ret && (pfds[0].revents & POLLIN)) { in handle_ep0()