Lines Matching defs:sixpack
83 struct sixpack { struct
85 struct tty_struct *tty; /* ptr to TTY structure */
86 struct net_device *dev; /* easy for intr handling */
89 int rcount; /* received chars counter */
90 unsigned char *xbuff; /* transmitter buffer */
91 unsigned char *xhead; /* next byte to XMIT */
92 int xleft; /* bytes left in XMIT queue */
94 u8 raw_buf[4];
95 u8 cooked_buf[400];
97 unsigned int rx_count;
98 unsigned int rx_count_cooked;
99 spinlock_t rxlock;
101 unsigned long flags; /* Flag values/ mode etc */
125 static void sixpack_decode(struct sixpack *, const u8 *, size_t); argument