OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keyboard_termios
(Results
1 - 2
of
2
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbevents.c
157
struct termios
keyboard_termios
;
local
191
keyboard_termios
= saved_kbd_termios;
192
keyboard_termios
.c_lflag &= ~(ICANON | ECHO | ISIG);
193
keyboard_termios
.c_iflag &= ~(ISTRIP | IGNCR | ICRNL | INLCR | IXOFF | IXON);
194
keyboard_termios
.c_cc[VMIN] = 0;
195
keyboard_termios
.c_cc[VTIME] = 0;
196
if (tcsetattr(keyboard_fd, TCSAFLUSH, &
keyboard_termios
) < 0) {
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsevents.c
150
struct termios
keyboard_termios
;
local
184
keyboard_termios
= saved_kbd_termios;
185
keyboard_termios
.c_lflag &= ~(ICANON | ECHO | ISIG);
186
keyboard_termios
.c_iflag &= ~(ISTRIP | IGNCR | ICRNL | INLCR | IXOFF | IXON);
187
keyboard_termios
.c_cc[VMIN] = 0;
188
keyboard_termios
.c_cc[VTIME] = 0;
189
if (tcsetattr(keyboard_fd, TCSAFLUSH, &
keyboard_termios
) < 0) {
Completed in 3532 milliseconds