Lines Matching refs:fd
1581 int fd = posix_openpt (O_RDWR); in do_test() local
1582 if (fd != -1) in do_test()
1585 if (ptsname_r (fd, enough, sizeof (enough)) != 0) in do_test()
1591 if (ptsname_r (fd, smallbuf, sizeof (smallbuf) + 1) == 0) in do_test()
1595 close (fd); in do_test()
1619 fd = open (_PATH_TTY, O_RDONLY); in do_test() local
1620 if (fd != -1) in do_test()
1623 if (ttyname_r (fd, enough, sizeof (enough)) != 0) in do_test()
1629 if (ttyname_r (fd, smallbuf, sizeof (smallbuf) + 1) == 0) in do_test()
1633 close (fd); in do_test()
1702 fds[0].fd = STDOUT_FILENO; in do_test()