Home
last modified time | relevance | path

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

/packages/apps/Terminal/jni/
Dcom_android_terminal_Terminal.cpp292 struct termios termios; in run() local
293 memset(&termios, 0, sizeof(termios)); in run()
294 termios.c_iflag = ICRNL|IXON|IUTF8; in run()
295 termios.c_oflag = OPOST|ONLCR|NL0|CR0|TAB0|BS0|VT0|FF0; in run()
296 termios.c_cflag = CS8|CREAD; in run()
297 termios.c_lflag = ISIG|ICANON|IEXTEN|ECHO|ECHOE|ECHOK; in run()
299 cfsetispeed(&termios, B38400); in run()
300 cfsetospeed(&termios, B38400); in run()
302 termios.c_cc[VINTR] = 0x1f & 'C'; in run()
303 termios.c_cc[VQUIT] = 0x1f & '\\'; in run()
[all …]