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

  /src/external/bsd/openldap/dist/include/ac/
termios.h 31 #define GETATTR( fd, tiop ) tcgetattr((fd), (tiop))
32 #define SETATTR( fd, tiop ) tcsetattr((fd), TCSANOW /* 0 */, (tiop))
45 #define GETATTR( fd, tiop ) ioctl((fd), TIOCGETP, (caddr_t)(tiop))
46 #define SETATTR( fd, tiop ) ioctl((fd), TIOCSETP, (caddr_t)(tiop))
  /src/external/gpl3/gdb/dist/readline/readline/
rltty.c 132 save_tty_chars (TIOTYPE *tiop)
136 if (tiop->flags & SGTTY_SET)
138 _rl_tty_chars.t_erase = tiop->sgttyb.sg_erase;
139 _rl_tty_chars.t_kill = tiop->sgttyb.sg_kill;
142 if (tiop->flags & TCHARS_SET)
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
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/
rltty.c 132 save_tty_chars (TIOTYPE *tiop)
136 if (tiop->flags & SGTTY_SET)
138 _rl_tty_chars.t_erase = tiop->sgttyb.sg_erase;
139 _rl_tty_chars.t_kill = tiop->sgttyb.sg_kill;
142 if (tiop->flags & TCHARS_SET)
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
    [all...]
  /src/external/bsd/tmux/dist/
cmd-new-session.c 77 struct termios tio, *tiop; local
191 tiop = &tio;
193 tiop = NULL;
278 s = session_create(prefix, newname, cwd, env, oo, tiop);
  /src/crypto/external/bsd/openssh/dist/
ttymodes.c 250 * or tiop in a portable manner, and appends the modes to a packet
254 ssh_tty_make_modes(struct ssh *ssh, int fd, struct termios *tiop)
263 if (tiop == NULL) {
273 tio = *tiop;
clientloop.c 2723 const char *term, struct termios *tiop, int in_fd, struct sshbuf *cmd,
2752 if (tiop == NULL)
2753 tiop = get_saved_tio();
2754 ssh_tty_make_modes(ssh, -1, tiop);

Completed in 32 milliseconds