Home | History | Annotate | Download | only in liblinenoise

Lines Matching refs:raw

117     struct termios raw;
126 raw = orig_termios; /* modify the original mode */
129 raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
131 raw.c_oflag &= ~(OPOST);
133 raw.c_cflag |= (CS8);
136 raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG);
139 raw.c_cc[VMIN] = 1; raw.c_cc[VTIME] = 0; /* 1 byte, no timer */
141 /* put terminal in raw mode */
142 if (tcsetattr(fd,TCSADRAIN,&raw) < 0) goto fatal;