HomeSort by relevance Sort by last modified time
    Searched refs:orig_termios (Results 1 - 2 of 2) sorted by null

  /frameworks/wilhelm/tests/sandbox/
getch.c 13 struct termios orig_termios; variable in typeref:struct:termios
17 tcsetattr(0, TCSANOW, &orig_termios);
25 tcgetattr(0, &orig_termios);
26 memcpy(&new_termios, &orig_termios, sizeof(new_termios));
  /system/core/liblinenoise/
linenoise.c 86 static struct termios orig_termios; /* in order to restore at exit */ variable in typeref:struct:termios
124 if (tcgetattr(fd,&orig_termios) == -1) goto fatal;
126 raw = orig_termios; /* modify the original mode */
153 if (rawmode && tcsetattr(fd,TCSADRAIN,&orig_termios) != -1)

Completed in 167 milliseconds