HomeSort by: relevance | last modified time | path
    Searched refs:_tty (Results 1 - 2 of 2) sorted by relevancy

  /src/games/warp/
term.h 185 EXT struct termios _tty, _oldtty; variable in typeref:struct:termios
188 EXT struct termio _tty, _oldtty;
194 EXT struct sgttyb _tty;
205 #define raw() ((bizarre=1),_tty.c_lflag &=~ISIG,_tty.c_cc[VMIN] = 1,tcsetattr(_tty_ch,TCSAFLUSH,&_tty))
206 #define noraw() ((bizarre=1),_tty.c_lflag |= ISIG,_tty.c_cc[VEOF] = CEOF,tcsetattr(_tty_ch,TCSAFLUSH,&_tty))
207 #define crmode() ((bizarre=1),_tty.c_lflag &=~ICANON,_tty.c_cc[VMIN] = 1,tcsetattr(_tty_ch,TCSAFLUSH,&_tty)
    [all...]
term.c 73 ospeed = cfgetospeed(&_tty);
74 ERASECH = _tty.c_cc[VERASE]; /* for finish_command() */
75 KILLCH = _tty.c_cc[VKILL]; /* for finish_command() */
77 ospeed = _tty.sg_ospeed; /* for tputs() */
78 ERASECH = _tty.sg_erase; /* for finish_command() */
79 KILLCH = _tty.sg_kill; /* for finish_command() */
569 ioctl(_tty_ch,TIOCSETP,&_tty);

Completed in 13 milliseconds