Home
last modified time | relevance | path

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

/debug/
A Dpoll_chk.c22 __poll_chk (struct pollfd *fds, nfds_t nfds, int timeout, __SIZE_TYPE__ fdslen) in __poll_chk() argument
24 if (fdslen / sizeof (*fds) < nfds) in __poll_chk()
27 return __poll (fds, nfds, timeout); in __poll_chk()
A Dppoll_chk.c22 __ppoll_chk (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, in __ppoll_chk() argument
25 if (fdslen / sizeof (*fds) < nfds) in __ppoll_chk()
28 return ppoll (fds, nfds, timeout, ss); in __ppoll_chk()
A Dtst-chk1.c1701 struct pollfd fds[1]; in do_test() local
1702 fds[0].fd = STDOUT_FILENO; in do_test()
1703 fds[0].events = POLLOUT; in do_test()
1704 poll (fds, 1, 0); in do_test()
1707 poll (fds, 2, 0); in do_test()
1711 poll (fds, l0 + 2, 0); in do_test()
1714 ppoll (fds, 1, NULL, NULL); in do_test()
1717 ppoll (fds, 2, NULL, NULL); in do_test()
1721 ppoll (fds, l0 + 2, NULL, NULL); in do_test()

Completed in 8 milliseconds