Searched defs:ttymodes (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/sulogin/
H A Dsulogin.c111 static struct termio ttymodes; variable in typeref:struct:termio
371 (void) ioctl(fd, TCGETA, &ttymodes);
372 ttymodes.c_iflag &= ~RESET_IFLAG;
373 ttymodes.c_iflag |= SET_IFLAG;
374 ttymodes.c_oflag &= ~RESET_OFLAG;
375 ttymodes.c_oflag |= SET_OFLAG;
376 ttymodes.c_lflag &= ~RESET_LFLAG;
377 ttymodes.c_lflag |= SET_LFLAG;
378 ttymodes.c_cc[VERASE] = CERASE;
379 ttymodes
689 (void) ioctl(fileno(fi), TCSETAW, &ttymodes); local
[all...]
/illumos-gate/usr/src/ucbcmd/tset/
H A Dtset.c1125 struct termios *ttymodes; local
1129 ttymodes = (struct termios *)0;
1141 ttymodes = &oldmodes;
1161 ttymodes = &modes;
1166 } else if (ttymodes) {
1167 (void) ioctl(FILEDES, TCSETSW, (char *)ttymodes);

Completed in 65 milliseconds