Searched refs:tcgetattr (Results 51 - 75 of 124) sorted by relevance

12345

/freebsd-11-stable/contrib/libreadline/examples/rlfe/
H A Drlfe.c23 * what tcgetattr returns is inherently not robust, plus it doesn't
532 tcgetattr(STDIN_FILENO, &orig_term);
602 ioctl_ret = tcgetattr(master, &term_master);
617 DPRINT1("tcgetattr on master fd failed: errno = %d\n", errno);
/freebsd-11-stable/libexec/rlogind/
H A Drlogind.c546 tcgetattr(fd, &tt);
568 tcgetattr(fd, &tt);
/freebsd-11-stable/usr.bin/tip/tip/
H A Dtip.c219 tcgetattr(0, &defterm);
559 if (tcgetattr(FD, &cntrl))
H A Dcmds.c855 tcgetattr(FD, &rmtty);
875 tcgetattr(FD, &rmtty);
/freebsd-11-stable/libexec/comsat/
H A Dcomsat.c193 (void)tcgetattr(fileno(tp), &tio);
/freebsd-11-stable/contrib/nvi/cl/
H A Dcl_read.c206 if (LF_ISSET(EC_QUOTED | EC_RAW) && !tcgetattr(STDIN_FILENO, &term1)) {
H A Dcl_funcs.c731 (void)tcgetattr(STDIN_FILENO, &t);
766 (void)tcgetattr(STDIN_FILENO, &t);
H A Dcl_screen.c332 if (tcgetattr(STDIN_FILENO, &clp->vi_enter)) {
333 msgq(sp, M_SYSERR, "tcgetattr");
/freebsd-11-stable/usr.bin/mail/
H A Dtty.c83 if (tcgetattr(fileno(stdin), &ttybuf) < 0) {
84 warn("tcgetattr(stdin)");
H A Dmain.c374 if (tcgetattr(1, &tbuf) < 0)
/freebsd-11-stable/usr.bin/tset/
H A Dset.c56 tcgetattr(STDERR_FILENO, &mode);
/freebsd-11-stable/contrib/netbsd-tests/kernel/
H A Dt_pty.c123 if (tcgetattr(fd, &tios) == -1)
124 err(EXIT_FAILURE, "tcgetattr()");
/freebsd-11-stable/usr.bin/chat/
H A Dchat.c131 #define get_term_param(param) tcgetattr(0, param)
/freebsd-11-stable/usr.sbin/ppp/
H A Dtty.c451 tcgetattr(p->fd, &ios);
486 tcgetattr(p->fd, &tio);
538 if (tcgetattr(p->fd, &ios) == -1)
712 tcgetattr(p->fd, &ios);
/freebsd-11-stable/usr.sbin/bluetooth/hcseriald/
H A Dhcseriald.c177 if (tcgetattr(fd, &t) < 0) {
178 syslog(LOG_ERR, "Could not tcgetattr(%s). %s (%d)",
/freebsd-11-stable/contrib/libarchive/libarchive_fe/
H A Dpassphrase.c208 if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
/freebsd-11-stable/contrib/tcsh/
H A Dmi.termios.c151 int tcgetattr(filedes, termios_p) function
258 * the terminal back to the state returned by tcgetattr :).
/freebsd-11-stable/contrib/telnet/telnetd/
H A Dsys_term.c95 # define tcgetattr(f, t) ioctl(f, TCGETS, (char *)t) macro
100 # define tcgetattr(f, t) ioctl(f, TCGETA, (char *)t) macro
104 # define tcgetattr(f, t) ioctl(f, TIOCGETA, (char *)t) macro
153 (void) tcgetattr(pty, &termbuf);
/freebsd-11-stable/contrib/ntp/parseutil/
H A Dtestdcf.c377 if (tcgetattr(fd, &term) == -1)
379 perror("tcgetattr");
/freebsd-11-stable/stand/userboot/test/
H A Dtest.c468 tcgetattr(0, &term);
/freebsd-11-stable/lib/libdpv/
H A Ddialog_util.c98 if ((tcgetattr(fd, &t) < 0) || (ioctl(fd, TIOCGWINSZ, maxsize) < 0)) {
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Dread_pwd.c151 # define TTY_get(tty,data) tcgetattr(tty,data)
/freebsd-11-stable/usr.bin/morse/
H A Dmorse.c379 if (tcgetattr(line, &otty) == -1) {
380 err(1, "tcgetattr() failed");
/freebsd-11-stable/usr.sbin/watch/
H A Dwatch.c328 tcgetattr(std_in, &otty);
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_ttyconv.c106 if (tcgetattr(ifd, &tcattr) != 0) {
107 openpam_log(PAM_LOG_ERROR, "tcgetattr(): %m");

Completed in 165 milliseconds

12345