Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/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()
/kernel/liteos_a/testsuites/unittest/drivers/hid/smoke/
Dhid_test_001.cpp47 struct pollfd pfds[1]; in Testcase() local
67 pfds[0].fd = fd; in Testcase()
68 pfds[0].events = POLLIN; in Testcase()
70 ret = poll(pfds, 1, MOUSE_WAIT_TIME); in Testcase()
/kernel/linux/linux-5.10/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()