Searched refs:TTY_set (Results 1 – 2 of 2) sorted by relevance
/external/openssl/crypto/des/ |
D | read_pwd.c | 149 #define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) macro 157 #define TTY_set(tty,data) ioctl(tty,TCSETA,data) macro 165 #define TTY_set(tty,data) ioctl(tty,TIOCSETP,data) macro 341 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS) in des_read_pw() 342 if (is_a_tty && (TTY_set(fileno(tty),&tty_new) == -1)) in des_read_pw() 399 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS) in des_read_pw() 400 if (ps >= 2) TTY_set(fileno(tty),&tty_orig); in des_read_pw()
|
/external/openssl/crypto/ui/ |
D | ui_openssl.c | 220 # define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) macro 228 # define TTY_set(tty,data) ioctl(tty,TCSETA,data) macro 236 # define TTY_set(tty,data) ioctl(tty,TIOCSETP,data) macro 527 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS) in noecho_console() 528 if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1)) in noecho_console() 544 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS) in echo_console() 549 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS) in echo_console() 550 if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1)) in echo_console()
|