Lines Matching defs:testfd
204 clear_fd(const char *testName, int pollfd, int testfd)
209 fd.fd = testfd;
218 testfd, strerror(ret));
222 test_failed(testName, "Failed to clear fd %d: %d", testfd, ret);
258 poll_with_fds_test(int testfd)
266 fd.fd = testfd;
319 dev_poll_with_fds_test(int pollfd, int testfd)
332 clear_fd(testName, pollfd, testfd);
337 fds[0].fd = testfd;
363 clear_fd(testName, pollfd, testfd);
373 int testfd;
385 testfd = socket(PF_INET, SOCK_STREAM, 0);
388 poll_with_fds_test(testfd);
391 dev_poll_with_fds_test(pollfd, testfd);
393 (void) close(testfd);