OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:oterm
(Results
1 - 2
of
2
) sorted by null
/external/openssh/openbsd-compat/
readpassphrase.c
67
struct termios term,
oterm
;
local
116
if (input != STDIN_FILENO && tcgetattr(input, &
oterm
) == 0) {
117
memcpy(&term, &
oterm
, sizeof(term));
128
memset(&
oterm
, 0, sizeof(
oterm
));
129
oterm
.c_lflag |= ECHO;
158
if (memcmp(&term, &
oterm
, sizeof(term)) != 0) {
159
while (tcsetattr(input, _T_FLUSH, &
oterm
) == -1 &&
readpassphrase.c.orig
67
struct termios term,
oterm
;
116
if (input != STDIN_FILENO && tcgetattr(input, &
oterm
) == 0) {
117
memcpy(&term, &
oterm
, sizeof(term));
128
memset(&
oterm
, 0, sizeof(
oterm
));
129
oterm
.c_lflag |= ECHO;
158
if (memcmp(&term, &
oterm
, sizeof(term)) != 0) {
159
while (tcsetattr(input, _T_FLUSH, &
oterm
) == -1 &&
Completed in 49 milliseconds