Searched refs:pfds (Results 1 - 8 of 8) sorted by relevance
/kernel/linux/linux-5.10/samples/uhid/ |
H A D | uhid-example.c | 391 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[ in main() [all...] |
/kernel/linux/linux-6.6/samples/uhid/ |
H A D | uhid-example.c | 391 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[ in main() [all...] |
/kernel/liteos_a/testsuites/unittest/drivers/hid/smoke/ |
H A D | hid_test_001.cpp | 47 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-6.6/tools/lib/api/ |
H A D | io.h | 58 struct pollfd pfds[] = { in io__get_char() local 65 n = poll(pfds, 1, io->timeout_ms); in io__get_char() 68 if (n > 0 && !(pfds[0].revents & POLLIN)) { in io__get_char()
|
/kernel/linux/linux-5.10/tools/usb/ffs-aio-example/simple/device_app/ |
H A D | aio_simple.c | 169 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()
|
/kernel/linux/linux-6.6/tools/usb/ffs-aio-example/simple/device_app/ |
H A D | aio_simple.c | 187 struct pollfd pfds[1]; in handle_ep0() local 188 pfds[0].fd = ep0; in handle_ep0() 189 pfds[0].events = POLLIN; in handle_ep0() 191 ret = poll(pfds, 1, 0); in handle_ep0() 193 if (ret && (pfds[0].revents & POLLIN)) { in handle_ep0()
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/af_unix/ |
H A D | test_unix_oob.c | 109 struct pollfd pfds[1]; in wait_for_data() local 111 pfds[0].fd = pfd; in wait_for_data() 112 pfds[0].events = event; in wait_for_data() 113 poll(pfds, 1, -1); in wait_for_data()
|
/kernel/linux/linux-6.6/tools/testing/selftests/hid/ |
H A D | hid_bpf.c | 239 struct pollfd pfds[1]; in uhid_read_events_thread() local 243 pfds[0].fd = fd; in uhid_read_events_thread() 244 pfds[0].events = POLLIN; in uhid_read_events_thread() 249 ret = poll(pfds, 1, 100); in uhid_read_events_thread() 254 if (pfds[0].revents & POLLIN) { in uhid_read_events_thread()
|
Completed in 5 milliseconds