Lines Matching defs:Serialport
3 typedef struct Serialport Serialport; typedef
26 struct Serialport { struct
27 char name[32];
28 Serial *s; /* device we belong to */
29 int isjtag;
31 Dev *epintr; /* may not exist */
33 Dev *epin;
34 Dev *epout;
36 Usbfs fs;
37 uchar ctlstate;
40 uint baud;
41 int stop;
42 int mctl;
43 int parity;
44 int bits;
45 int fifo;
46 int limit;
47 int rts;
48 int cts;
49 int dsr;
50 int dcd;
51 int dtr;
52 int rlsd;
54 vlong timer;
55 int blocked; /* for sw flow ctl. BUG: not implemented yet */
56 int nbreakerr;
57 int ring;
58 int nframeerr;
59 int nparityerr;
60 int novererr;
84 Serialport p[Maxifc]; argument