/minix3/minix/drivers/tty/pty/ |
H A D | tty.h | 24 typedef struct tty { struct 25 int tty_events; /* set when TTY should inspect this line */ argument 26 int tty_index; /* index into TTY table */ argument 29 u16_t *tty_inhead; /* pointer to place where next char goes */ argument 30 u16_t *tty_intail; /* pointer to next char to be given to prog */ argument 31 int tty_incount; /* # chars in the input queue */ argument 32 int tty_eotct; /* number of "line breaks" in input queue */ argument 33 devfun_t tty_devread; /* routine to read from low level buffers */ argument 34 devfun_t tty_icancel; /* cancel any device input */ argument 35 int tty_min; /* minimum requested #chars in input queue */ argument [all …]
|
/minix3/minix/drivers/tty/tty/ |
H A D | tty.h | 25 typedef struct tty { struct 26 int tty_events; /* set when TTY should inspect this line */ argument 27 int tty_index; /* index into TTY table */ argument 28 devminor_t tty_minor; /* device minor number */ argument 31 u16_t *tty_inhead; /* pointer to place where next char goes */ argument 32 u16_t *tty_intail; /* pointer to next char to be given to prog */ argument 33 int tty_incount; /* # chars in the input queue */ argument 34 int tty_eotct; /* number of "line breaks" in input queue */ argument 35 devfun_t tty_devread; /* routine to read from low level buffers */ argument 36 devfun_t tty_icancel; /* cancel any device input */ argument [all …]
|
/minix3/sys/sys/ |
H A D | tty.h | 109 struct tty { struct 111 struct clist t_rawq; /* Device raw input queue. */ 112 long t_rawcc; /* Raw input queue statistics. */ 113 kcondvar_t t_rawcv; /* notifier */ 137 void (*t_oproc)(struct tty *); argument 139 int (*t_param)(struct tty *, struct termios *); argument 141 int (*t_hwiflow)(struct tty *, int); argument 150 TAILQ_ENTRY(tty) t_sigqueue; /* entry on pending signal list */ argument 164 #define TTIPRI 25 /* Sleep priority for tty reads. */ argument
|
/minix3/external/bsd/tmux/dist/ |
H A D | tty.c | 52 #define tty_use_acs(tty) \ argument 55 #define tty_pane_full_width(tty, ctx) \ argument 59 tty_init(struct tty *tty, struct client *c, int fd, char *term) in tty_init() 84 tty_resize(struct tty *tty) in tty_resize() 122 tty_set_size(struct tty *tty, u_int sx, u_int sy) { in tty_set_size() 131 tty_open(struct tty *tty, const char *overrides, char **cause) in tty_open() 166 struct tty *tty = data; in tty_read_callback() local 204 tty_start_tty(struct tty *tty) in tty_start_tty() 244 tty_set_class(struct tty *tty, u_int class) in tty_set_class() 252 tty_stop_tty(struct tty *tty) in tty_stop_tty() [all …]
|
H A D | tty-keys.c | 296 tty_keys_add(struct tty *tty, const char *s, int key) in tty_keys_add() 352 tty_keys_build(struct tty *tty) in tty_keys_build() 382 tty_keys_free(struct tty *tty) in tty_keys_free() 402 tty_keys_find(struct tty *tty, const char *buf, size_t len, size_t *size) in tty_keys_find() 444 tty_keys_next(struct tty *tty) in tty_keys_next() 595 struct tty *tty = data; in tty_keys_callback() local 608 tty_keys_mouse(struct tty *tty, const char *buf, size_t len, size_t *size) in tty_keys_mouse() 787 tty_keys_device(struct tty *tty, const char *buf, size_t len, size_t *size) in tty_keys_device()
|
H A D | utmp.c | 72 const char *tty, const struct timeval *now) in login_utmpx() 109 const char *tty, const struct timeval *now) in login_utmp() 128 utmp_create(const char *tty) in utmp_create()
|
H A D | screen-redraw.c | 226 struct tty *tty = &c->tty; in screen_redraw_screen() local 279 struct tty *tty = &c->tty; in screen_redraw_draw_borders() local 312 struct tty *tty = &c->tty; in screen_redraw_draw_panes() local 332 struct tty *tty = &c->tty; in screen_redraw_draw_status() local 344 struct tty *tty = &c->tty; in screen_redraw_draw_number() local
|
H A D | osdep-unknown.c | 26 osdep_get_name(unused int fd, unused char *tty) in osdep_get_name()
|
H A D | osdep-hpux.c | 26 osdep_get_name(unused int fd, unused char *tty) in osdep_get_name()
|
H A D | osdep-aix.c | 26 osdep_get_name(unused int fd, unused char *tty) in osdep_get_name()
|
H A D | tty-acs.c | 79 tty_acs_get(struct tty *tty, u_char ch) in tty_acs_get()
|
H A D | osdep-darwin.c | 34 osdep_get_name(int fd, unused char *tty) in osdep_get_name()
|
H A D | osdep-sunos.c | 32 osdep_get_name(int fd, char *tty) in osdep_get_name()
|
H A D | osdep-linux.c | 30 osdep_get_name(int fd, unused char *tty) in osdep_get_name()
|
/minix3/lib/libutil/ |
H A D | pidlock.c | 176 checktty(const char *tty) in checktty() 197 makelock(char *buf, size_t bufsiz, const char *tty) in makelock() 206 ttylock(const char *tty, int flags, pid_t *locker) in ttylock() 221 ttyunlock(const char *tty) in ttyunlock()
|
H A D | login.c | 56 int tty; in login() local
|
/minix3/crypto/external/bsd/openssl/lib/libdes/ |
H A D | oread_pwd.c | 138 #define TTY_get(tty,data) tcgetattr(tty,data) argument 139 #define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) argument 146 #define TTY_get(tty,data) ioctl(tty,TCGETA,data) argument 147 #define TTY_set(tty,data) ioctl(tty,TCSETA,data) argument 154 #define TTY_get(tty,data) ioctl(tty,TIOCGETP,data) argument 155 #define TTY_set(tty,data) ioctl(tty,TIOCSETP,data) argument 251 static FILE *tty; in des_read_pw() local 462 static int noecho_fgets(char *buf, int size, FILE *tty) in noecho_fgets()
|
/minix3/crypto/external/bsd/openssl/dist/crypto/des/ |
H A D | read_pwd.c | 146 # define TTY_get(tty,data) tcgetattr(tty,data) argument 147 # define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) argument 154 # define TTY_get(tty,data) ioctl(tty,TCGETA,data) argument 155 # define TTY_set(tty,data) ioctl(tty,TCSETA,data) argument 162 # define TTY_get(tty,data) ioctl(tty,TIOCGETP,data) argument 163 # define TTY_set(tty,data) ioctl(tty,TIOCSETP,data) argument 279 static FILE *tty; in des_read_pw() local 487 static int noecho_fgets(char *buf, int size, FILE *tty) in noecho_fgets()
|
/minix3/crypto/external/bsd/openssl/dist/crypto/ui/ |
H A D | ui_openssl.c | 220 # define TTY_get(tty,data) tcgetattr(tty,data) argument 221 # define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) argument 228 # define TTY_get(tty,data) ioctl(tty,TCGETA,data) argument 229 # define TTY_set(tty,data) ioctl(tty,TCSETA,data) argument 236 # define TTY_get(tty,data) ioctl(tty,TIOCGETP,data) argument 237 # define TTY_set(tty,data) ioctl(tty,TIOCSETP,data) argument 670 static int noecho_fgets(char *buf, int size, FILE *tty) in noecho_fgets()
|
/minix3/minix/commands/zmodem/ |
H A D | rbsb.c | 154 struct termios oldtty, tty; variable 157 struct termio oldtty, tty; variable 159 struct sgttyb oldtty, tty; variable
|
/minix3/lib/libutil/compat/ |
H A D | compat_login.c | 63 int tty; in login() local
|
/minix3/usr.bin/mesg/ |
H A D | mesg.c | 65 char *tty; in main() local
|
/minix3/external/bsd/less/dist/ |
H A D | ttyin.c | 28 public int tty; variable
|
/minix3/lib/libc/gen/ |
H A D | getttyent.c | 69 getttynam(const char *tty) in getttynam() 86 static struct ttyent tty; in getttyent() local
|
/minix3/usr.bin/write/ |
H A D | write.c | 129 utmp_chk(const char *user, const char *tty) in utmp_chk() 155 char tty[MAXPATHLEN]; in search_utmp() local
|