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

  /src/sys/kern/
tty_conf.c 83 static struct linesw termios_disc = {
101 static struct linesw ntty_disc = { /* old NTTYDISC */
114 static LIST_HEAD(, linesw) ttyldisc_list = LIST_HEAD_INITIALIZER(ttyldisc_head);
177 static struct linesw *
180 struct linesw *disc;
194 struct linesw *
197 struct linesw *disc;
212 struct linesw *
215 struct linesw *disc;
236 ttyldisc_release(struct linesw *disc
    [all...]
tty.c 905 * lock before calling linesw->l_rint()
1031 struct linesw *lp;
  /src/sys/sys/
conf.h 226 struct linesw { struct
227 const char *l_name; /* Linesw name */
229 LIST_ENTRY(linesw) l_list;
247 int ttyldisc_attach(struct linesw *);
248 int ttyldisc_detach(struct linesw *);
249 struct linesw *ttyldisc_lookup(const char *);
250 struct linesw *ttyldisc_lookup_bynum(int);
251 struct linesw *ttyldisc_default(void);
252 void ttyldisc_release(struct linesw *);
tty.h 124 struct linesw *t_linesw; /* Interface to device drivers. */
  /src/sys/dev/sun/
sunms.c 99 struct linesw sunms_disc = {
sunkbd.c 101 struct linesw sunkbd_disc = {
  /src/sys/dev/hpc/
hpf1275a_tty.c 97 static struct linesw hpf1275a_disc = {
  /src/sys/dev/bluetooth/
btuart.c 108 static struct linesw btuart_disc = {
bcsp.c 196 static struct linesw bcsp_disc = {
bth5.c 201 static struct linesw bth5_disc = {
  /src/usr.sbin/pstat/
pstat.c 839 struct linesw t_linesw;
  /src/sys/dev/ir/
irframe_tty.c 185 static struct linesw irframet_disc = {
284 DPRINTF(("%s: linesw=%p disc=%s\n", __func__, tp->t_linesw,
  /src/sys/net/
if_sl.c 206 static struct linesw slip_disc = {
ppp_tty.c 143 struct linesw ppp_disc = { /* XXX should be static */
if_ppp.c 180 extern struct linesw ppp_disc;
  /src/sys/arch/atari/dev/
zs.c 744 struct linesw *line;
  /src/sys/dev/pci/
xmm7360.c 160 #define LINESW(tp) (linesw[(tp)->t_line])
229 #define LINESW(tp) (*tp->t_linesw)
2438 LINESW(tp).l_rint(data[i], tp);
2482 error = LINESW(tp).l_open(dev, tp, p);
2504 return (LINESW(tp).l_read(tp, uio, flag));
2557 return (LINESW(tp).l_write(tp, uio, flag));
2607 error = LINESW(tp).l_ioctl(tp, cmd, data, flag, p);
2629 LINESW(tp).l_close(tp, flag, p);
2723 return LINESW(tp).l_poll(tp, events, p)
    [all...]

Completed in 27 milliseconds