Home | History | Annotate | Download | only in sys

Lines Matching defs:hostfd

999 	int hostfd, appfd;
1003 RL(hostfd = posix_openpt(O_RDWR|O_NOCTTY));
1004 RL(grantpt(hostfd));
1005 RL(unlockpt(hostfd));
1006 REQUIRE_LIBC(pts = ptsname(hostfd), NULL);
1014 *writefdp = hostfd;
1020 int hostfd, appfd;
1024 RL(hostfd = posix_openpt(O_RDWR|O_NOCTTY));
1025 RL(grantpt(hostfd));
1026 RL(unlockpt(hostfd));
1027 REQUIRE_LIBC(pts = ptsname(hostfd), NULL);
1035 *readfdp = hostfd;