Lines Matching full:term
171 struct termios term, oterm; in readpassphrase() local
209 memcpy(&term, &oterm, sizeof(term)); in readpassphrase()
211 term.c_lflag &= ~(ECHO | ECHONL); in readpassphrase()
213 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) in readpassphrase()
214 term.c_cc[VSTATUS] = _POSIX_VDISABLE; in readpassphrase()
216 (void)tcsetattr(input, _T_FLUSH, &term); in readpassphrase()
218 memset(&term, 0, sizeof(term)); in readpassphrase()
219 term.c_lflag |= ECHO; in readpassphrase()
266 if (!(term.c_lflag & ECHO)) { in readpassphrase()
272 if (memcmp(&term, &oterm, sizeof(term)) != 0) { in readpassphrase()