Searched refs:posix_openpt (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/Libc-997.90.3/stdlib/
H A Dgrantpt.c31 * posix_openpt call for cloning pty implementation.
36 posix_openpt(int flags) function
/macosx-10.9.5/Libc-997.90.3/util/
H A Dpty.c81 if ((master = posix_openpt(O_RDWR|O_NOCTTY)) < 0)
/macosx-10.9.5/sudo-72/src/
H A Dget_pty.c111 posix_openpt(oflag) function
135 *master = posix_openpt(O_RDWR|O_NOCTTY);
H A Dconfigure16568 for ac_func in posix_openpt
16570 ac_fn_c_check_func "$LINENO" "posix_openpt" "ac_cv_func_posix_openpt"
/macosx-10.9.5/Libc-997.90.3/include/
H A Dstdlib.h220 int posix_openpt(int);
/macosx-10.9.5/ruby-104/ruby/ext/pty/
H A Dpty.c233 /* FreeBSD 8 supported O_CLOEXEC for posix_openpt, but FreeBSD 9 removed it.
235 if ((masterfd = posix_openpt(O_RDWR|O_NOCTTY)) == -1) goto error;
243 /* glibc posix_openpt() in GNU/Linux calls open("/dev/ptmx", flags) internally.
248 if ((masterfd = posix_openpt(flags)) == -1) goto error;

Completed in 275 milliseconds