Lines Matching refs:pty
752 --enable-pty-erase set default ptyInitialErase resource (default: maybe)
796 --disable-pty-handshake disable pty-handshake support
16626 int pty;
16636 else if ((pty = posix_openpt(O_RDWR)) < 0)
16638 else if (grantpt(pty) < 0)
16640 else if (unlockpt(pty) < 0)
16642 else if ((slave = ptsname(pty)) == 0)
16645 else if (!isatty(pty))
16649 else if (tcgetattr(pty, &tio) < 0)
16651 else if (tcsetattr(pty, TCSAFLUSH, &tio) < 0)
16654 /* BSD posix_openpt does not treat pty as a terminal until slave is opened.
16741 int pty;
16751 else if ((pty = posix_openpt(O_RDWR)) < 0)
16753 else if (grantpt(pty) < 0)
16755 else if (unlockpt(pty) < 0)
16757 else if ((slave = ptsname(pty)) == 0)
16760 else if (!isatty(pty))
16764 else if (tcgetattr(pty, &tio) < 0)
16766 else if (tcsetattr(pty, TCSAFLUSH, &tio) < 0)
16769 /* BSD posix_openpt does not treat pty as a terminal until slave is opened.
16836 echo "$as_me:16836: checking for pty features" >&5
16837 echo $ECHO_N "checking for pty features... $ECHO_C" >&6
16852 echo "${as_me:-configure}:16852: testing pty feature test $cf_pty_next:5 ..." 1>&5
16898 int pty;
16908 else if ((pty = posix_openpt(O_RDWR)) < 0)
16910 else if (grantpt(pty) < 0)
16912 else if (unlockpt(pty) < 0)
16914 else if ((slave = ptsname(pty)) == 0)
16917 else if (!isatty(pty))
16921 else if (tcgetattr(pty, &tio) < 0)
16923 else if (tcsetattr(pty, TCSAFLUSH, &tio) < 0)
16926 /* BSD posix_openpt does not treat pty as a terminal until slave is opened.
17098 pty.h \
18759 echo "$as_me:18759: checking for default pty initial erase setting" >&5
18760 echo $ECHO_N "checking for default pty initial erase setting... $ECHO_C" >&6
18762 # Check whether --enable-pty-erase or --disable-pty-erase was given.
21159 echo "$as_me:21159: checking if you want support for pty-handshaking" >&5
21160 echo $ECHO_N "checking if you want support for pty-handshaking... $ECHO_C" >&6
21162 # Check whether --enable-pty-handshake or --disable-pty-handshake was given.