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

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dgetpass.c44 static struct termios termios_b; variable in typeref:struct:termios
52 termios_b.c_lflag = flags;
53 (void) tcsetattr(fileno(fi), TCSADRAIN, &termios_b); local
71 if (tcgetattr(fileno(fi), &termios_b) < 0)
73 flags = termios_b.c_lflag;
77 termios_b.c_lflag &= ~ECHO;
78 (void) tcsetattr(fileno(fi), TCSADRAIN, &termios_b); local
89 termios_b.c_lflag = flags;
90 (void) tcsetattr(fileno(fi), TCSADRAIN, &termios_b); local

Completed in 67 milliseconds