Home
last modified time | relevance | path

Searched refs:new_settings (Results 1 – 6 of 6) sorted by relevance

/freebsd/usr.bin/top/
H A Dscreen.c54 static struct termios new_settings; variable
187 new_settings = old_settings; in init_screen()
190 new_settings.c_lflag &= ~(ICANON|ECHO); in init_screen()
191 new_settings.c_oflag &= ~(TAB3); in init_screen()
192 new_settings.c_cc[VMIN] = 1; in init_screen()
193 new_settings.c_cc[VTIME] = 0; in init_screen()
194 tcsetattr(STDOUT_FILENO, TCSADRAIN, &new_settings); in init_screen()
239 tcsetattr(STDOUT_FILENO, TCSADRAIN, &new_settings); in reinit_screen()
/freebsd/stand/kboot/kboot/
H A Dhostcons.c59 struct host_termios new_settings; in hostcons_init() local
62 new_settings = old_settings; in hostcons_init()
63 host_cfmakeraw(&new_settings); in hostcons_init()
64 host_tcsetattr(0, HOST_TCSANOW, &new_settings); in hostcons_init()
/freebsd/contrib/ncurses/progs/
H A Dtty_settings.c102 update_tty_settings(TTY * old_settings, TTY * new_settings) in update_tty_settings() argument
104 if (memcmp(new_settings, old_settings, sizeof(TTY))) { in update_tty_settings()
105 SET_TTY(my_fd, new_settings); in update_tty_settings()
H A Dreset_cmd.c600 TTY * new_settings, in show_tty_change() argument
611 (void) new_settings; in show_tty_change()
616 newer = new_settings->c_cc[which]; in show_tty_change()
663 print_tty_chars(TTY * old_settings, TTY * new_settings) in print_tty_chars() argument
668 show_tty_change(old_settings, new_settings, "Erase", VERASE, CERASE); in print_tty_chars()
669 show_tty_change(old_settings, new_settings, "Kill", VKILL, CKILL); in print_tty_chars()
670 show_tty_change(old_settings, new_settings, "Interrupt", VINTR, CINTR); in print_tty_chars()
H A Dtabs.c657 TTY new_settings = tty_settings; in main() local
658 new_settings.c_oflag &= (unsigned) ~OCRNL; in main()
659 update_tty_settings(&tty_settings, &new_settings); in main()
/freebsd/sys/dev/mpt/
H A Dmpt_raid.c67 uint32_t new_settings; member