OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mouse_termios
(Results
1 - 3
of
3
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbelo.c
333
struct termios
mouse_termios
;
local
362
SDL_memset(&
mouse_termios
, 0, sizeof(
mouse_termios
));
363
mouse_termios
.c_cflag = B9600 | CS8 | CREAD | CLOCAL;
364
mouse_termios
.c_cc[VMIN] = 1;
365
result = tcsetattr(fd, TCSANOW, &
mouse_termios
);
SDL_fbevents.c
676
struct termios
mouse_termios
;
local
679
tcgetattr(mouse_fd, &
mouse_termios
);
680
mouse_termios
.c_iflag = IGNBRK | IGNPAR;
681
mouse_termios
.c_oflag = 0;
682
mouse_termios
.c_lflag = 0;
683
mouse_termios
.c_line = 0;
684
mouse_termios
.c_cc[VTIME] = 0;
685
mouse_termios
.c_cc[VMIN] = 1;
686
mouse_termios
.c_cflag = CREAD | CLOCAL | HUPCL;
687
mouse_termios
.c_cflag |= CS8
[
all
...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsevents.c
552
struct termios
mouse_termios
;
local
555
tcgetattr(mouse_fd, &
mouse_termios
);
556
mouse_termios
.c_iflag = IGNBRK | IGNPAR;
557
mouse_termios
.c_oflag = 0;
558
mouse_termios
.c_lflag = 0;
559
mouse_termios
.c_line = 0;
560
mouse_termios
.c_cc[VTIME] = 0;
561
mouse_termios
.c_cc[VMIN] = 1;
562
mouse_termios
.c_cflag = CREAD | CLOCAL | HUPCL;
563
mouse_termios
.c_cflag |= CS8
[
all
...]
Completed in 42 milliseconds