HomeSort by: relevance | last modified time | path
    Searched defs:tchars (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl2/texinfo/dist/info/
termdep.h 45 # define tchars tc macro
  /src/bin/ksh/
tty.h 82 struct tchars tchars; member in struct:__anon23
  /src/external/gpl3/gdb/dist/readline/readline/
rltty.c 109 struct tchars tchars; /* Terminal special characters, including ^S and ^Q. */ member in struct:bsdtty
144 _rl_intr_char = _rl_tty_chars.t_intr = tiop->tchars.t_intrc;
145 _rl_quit_char = _rl_tty_chars.t_quit = tiop->tchars.t_quitc;
147 _rl_tty_chars.t_start = tiop->tchars.t_startc;
148 _rl_tty_chars.t_stop = tiop->tchars.t_stopc;
149 _rl_tty_chars.t_eof = tiop->tchars.t_eofc;
151 _rl_tty_chars.t_eol2 = tiop->tchars.t_brkc;
186 if (ioctl (tty, TIOCGETC, &(tiop->tchars)) == 0)
219 ioctl (tty, TIOCSETC, &(tiop->tchars));
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/
rltty.c 110 struct tchars tchars; /* Terminal special characters, including ^S and ^Q. */ member in struct:bsdtty
145 _rl_intr_char = _rl_tty_chars.t_intr = tiop->tchars.t_intrc;
146 _rl_quit_char = _rl_tty_chars.t_quit = tiop->tchars.t_quitc;
148 _rl_tty_chars.t_start = tiop->tchars.t_startc;
149 _rl_tty_chars.t_stop = tiop->tchars.t_stopc;
150 _rl_tty_chars.t_eof = tiop->tchars.t_eofc;
152 _rl_tty_chars.t_eol2 = tiop->tchars.t_brkc;
187 if (ioctl (tty, TIOCGETC, &(tiop->tchars)) == 0)
220 ioctl (tty, TIOCSETC, &(tiop->tchars));
    [all...]
  /src/bin/csh/
file.c 114 struct termios tchars; local
116 (void)tcgetattr(SHIN, &tchars);
119 tchars.c_cc[VEOL] = ESC;
120 if (tchars.c_lflag & ICANON)
123 tchars.c_lflag |= ICANON;
128 tchars.c_cc[VEOL] = _POSIX_VDISABLE;
132 (void)tcsetattr(SHIN, on, &tchars);
  /src/sys/sys/
ioctl_compat.h 46 struct tchars { struct
91 #define TIOCSETC _IOW('t',17,struct tchars)/* set special characters */
92 #define TIOCGETC _IOR('t',18,struct tchars)/* get special characters */

Completed in 30 milliseconds