Lines Matching refs:termios
10 pub unsafe fn cfmakeraw(termios: *mut ::termios) {
11 (*termios).c_iflag &=
13 (*termios).c_oflag &= !OPOST;
14 (*termios).c_lflag &= !(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
15 (*termios).c_cflag &= !(CSIZE | PARENB);
16 (*termios).c_cflag |= CS8;
31 (*termios).c_cc[VMIN] = 1;
32 (*termios).c_cc[VTIME] = 0;
35 pub unsafe fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int {
38 ::cfsetispeed(termios, speed);
39 ::cfsetospeed(termios, speed);
59 termp: *const termios,
126 termp: *const termios,