Searched refs:tcsetattr (Results 1 - 25 of 90) sorted by relevance

1234

/macosx-10.10/ntp-92/include/
H A Dntp_tty.h16 #ifndef tcsetattr
17 #define tcsetattr(fd, cmd, arg) ioctl(fd, cmd, arg) macro
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-nextstep.h52 int tcsetattr(int, int, const struct termios *);
H A Dbsd-nextstep.c53 tcsetattr(int fd, int opt, const struct termios *t) function
H A Dreadpassphrase.c116 (void)tcsetattr(input, _T_FLUSH, &term);
151 while (tcsetattr(input, _T_FLUSH, &oterm) == -1 &&
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/include/
H A Dterminal.h58 # undef tcsetattr macro
74 # undef tcsetattr macro
75 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty) macro
107 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty) macro
126 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty) macro
129 # define tcsetattr(fd,action,tty) stty(fd, tty) macro
200 # define tcsetattr(a,b,c) sh_tcsetattr(a,b,c) macro
/macosx-10.10/OpenSSH-189/openssh/
H A Dsshtty.c61 if (tcsetattr(fileno(stdin), TCSADRAIN, &_saved_tio) == -1) {
63 perror("tcsetattr");
91 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) == -1) {
93 perror("tcsetattr");
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Dexcallback.c115 if( tcsetattr(STDIN_FILENO, TCSANOW, &term) < 0 ) {
116 perror("tcsetattr");
147 if( tcsetattr(STDIN_FILENO, TCSANOW, &term) < 0 ) {
148 perror("tcsetattr");
/macosx-10.10/ksh-23/ksh/src/lib/libast/uwin/
H A Dgetpass.c63 if(tcsetattr(sffileno(iop),TCSANOW,&tnew) < 0)
69 tcsetattr(sffileno(iop),TCSANOW,&told);
/macosx-10.10/sudo-73/src/
H A Dterm.c82 # define tcsetattr(f, a, t) ioctl(f, a, t) macro
92 # define tcsetattr(f, a, t) ioctl(f, a, t) macro
116 if (tcsetattr(fd, flags, &oterm) == 0)
139 if (tcsetattr(fd, TCSADRAIN|TCSASOFT, &term) == 0) {
169 if (tcsetattr(fd, TCSADRAIN|TCSASOFT, &term) == 0) {
191 if (tcsetattr(fd, TCSADRAIN|TCSASOFT, &term) == 0) {
210 if (tcsetattr(dst, TCSANOW|TCSASOFT, &tt) != 0)
/macosx-10.10/Heimdal-398.1.2/appl/login/
H A Dstty_default.c99 tcsetattr(0, TCSANOW, &termios);
H A Dread_string.c86 tcsetattr(fileno(tty), TCSANOW, &t_new);
109 tcsetattr(fileno(tty), TCSANOW, &t_old);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dtermios.h30 #define SETATTR( fd, tiop ) tcsetattr((fd), TCSANOW /* 0 */, (tiop))
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DSaslInteractionHandler.cpp66 if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &attr) < 0) {
67 perror("tcsetattr");
84 tcsetattr(STDIN_FILENO, TCSANOW, &old_attr);
/macosx-10.10/mail_cmds-30/mail/
H A Dtty.c125 ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
133 ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
140 ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
148 ttyset++, tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
161 tcsetattr(fileno(stdin), TCSADRAIN, &ttybuf);
/macosx-10.10/bind9-45.101/bind9/lib/isc/unix/
H A Dkeyboard.c67 if (tcsetattr(fd, TCSAFLUSH, &current_mode) < 0) {
89 (void)tcsetattr(keyboard->fd, TCSAFLUSH, &keyboard->saved_mode);
/macosx-10.10/ntp-92/lib/isc/unix/
H A Dkeyboard.c67 if (tcsetattr(fd, TCSAFLUSH, &current_mode) < 0) {
89 (void)tcsetattr(keyboard->fd, TCSAFLUSH, &keyboard->saved_mode);
/macosx-10.10/vim-55/src/
H A Dos_beos.c108 tcsetattr(0, TCSANOW, &tnew);
111 tcsetattr(0, TCSANOW, &told);
/macosx-10.10/IOSerialFamily-74/tests/
H A DIOSerialTestLib.c103 if (tcsetattr(fd, TCSANOW, &options) == -1) {
104 printf("[FAIL] _modifyAttributes: tcsetattr failed\n");
108 // check that the tcsetattr worked properly
115 printf("[FAIL] _modifyAttributes: tcsetattr/tcgetattr failed\n");
269 tcsetattr(fd, TCSANOW, &originalTTYAttrs);
371 tcsetattr(readFd, TCSANOW, &originalReadTTYAttrs);
372 tcsetattr(writeFd, TCSANOW, &originalWriteTTYAttrs);
/macosx-10.10/Libc-1044.1.2/util/
H A Dpty.c94 (void) tcsetattr(slave, TCSAFLUSH, termp);
/macosx-10.10/ntp-92/libntp/
H A Dicom.c136 tcsetattr(fd, TCSANOW, &ttyb);
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dui.c162 tcsetattr(fileno(tty), TCSANOW, &t_new);
185 tcsetattr(fileno(tty), TCSANOW, &t_old);
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dreadpassphrase.c109 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term);
137 (void)tcsetattr(input, TCSANOW|TCSASOFT, &oterm);
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-ui.c201 tcsetattr(fileno(tty), TCSANOW, &t_new);
228 tcsetattr(fileno(tty), TCSANOW, &t_old);
/macosx-10.10/apr-32/apr/apr/passwd/
H A Dapr_getpass.c116 if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &attr) != 0)
136 tcsetattr(STDIN_FILENO, TCSANOW, &attr);
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_getpass.c197 tcsetattr(fd, TCSANOW, &noecho);
214 tcsetattr(fd, TCSAFLUSH, &withecho);

Completed in 161 milliseconds

1234