Symbol: ucom_softc
sys/bus/u4b/serial/u3g.c
105
struct ucom_softc sc_ucom[U3G_MAXPORTS];
sys/bus/u4b/serial/u3g.c
123
static void u3g_start_read(struct ucom_softc *ucom);
sys/bus/u4b/serial/u3g.c
124
static void u3g_stop_read(struct ucom_softc *ucom);
sys/bus/u4b/serial/u3g.c
125
static void u3g_start_write(struct ucom_softc *ucom);
sys/bus/u4b/serial/u3g.c
126
static void u3g_stop_write(struct ucom_softc *ucom);
sys/bus/u4b/serial/u3g.c
904
u3g_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/u3g.c
914
u3g_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/u3g.c
924
u3g_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/u3g.c
933
u3g_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/u3g.c
944
struct ucom_softc *ucom = usbd_xfer_softc(xfer);
sys/bus/u4b/serial/u3g.c
973
struct ucom_softc *ucom = usbd_xfer_softc(xfer);
sys/bus/u4b/serial/uark.c
104
static void uark_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uark.c
105
static void uark_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uark.c
106
static void uark_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uark.c
107
static void uark_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uark.c
108
static int uark_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uark.c
109
static void uark_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uark.c
110
static void uark_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/uark.c
112
static void uark_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uark.c
114
static void uark_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/uark.c
309
uark_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uark.c
317
uark_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uark.c
325
uark_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uark.c
333
uark_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uark.c
341
uark_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uark.c
349
uark_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uark.c
399
uark_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/uark.c
408
uark_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uark.c
438
uark_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/uark.c
85
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/ubsa.c
152
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/ubsa.c
173
static void ubsa_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/ubsa.c
174
static void ubsa_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/ubsa.c
175
static void ubsa_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/ubsa.c
176
static int ubsa_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ubsa.c
177
static void ubsa_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ubsa.c
178
static void ubsa_start_read(struct ucom_softc *);
sys/bus/u4b/serial/ubsa.c
179
static void ubsa_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/ubsa.c
180
static void ubsa_start_write(struct ucom_softc *);
sys/bus/u4b/serial/ubsa.c
181
static void ubsa_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/ubsa.c
182
static void ubsa_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/ubsa.c
184
static void ubsa_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/ubsa.c
368
ubsa_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/ubsa.c
378
ubsa_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/ubsa.c
388
ubsa_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/ubsa.c
398
ubsa_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ubsa.c
424
ubsa_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ubsa.c
495
ubsa_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubsa.c
507
ubsa_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubsa.c
519
ubsa_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubsa.c
527
ubsa_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubsa.c
535
ubsa_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/ubsa.c
657
ubsa_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubser.c
120
struct ucom_softc sc_ucom[UBSER_UNIT_MAX];
sys/bus/u4b/serial/ubser.c
144
static int ubser_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ubser.c
145
static void ubser_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/ubser.c
146
static void ubser_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/ubser.c
148
static void ubser_start_read(struct ucom_softc *);
sys/bus/u4b/serial/ubser.c
149
static void ubser_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/ubser.c
150
static void ubser_start_write(struct ucom_softc *);
sys/bus/u4b/serial/ubser.c
151
static void ubser_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/ubser.c
152
static void ubser_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/ubser.c
316
ubser_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ubser.c
463
ubser_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/ubser.c
490
ubser_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/ubser.c
498
ubser_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubser.c
506
ubser_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubser.c
514
ubser_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubser.c
522
ubser_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ubser.c
530
ubser_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/uchcom.c
157
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/uchcom.c
200
static int uchcom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uchcom.c
201
static void uchcom_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/uchcom.c
203
static void uchcom_cfg_open(struct ucom_softc *ucom);
sys/bus/u4b/serial/uchcom.c
204
static void uchcom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uchcom.c
205
static void uchcom_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uchcom.c
206
static void uchcom_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uchcom.c
207
static void uchcom_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uchcom.c
208
static void uchcom_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uchcom.c
209
static void uchcom_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uchcom.c
210
static void uchcom_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uchcom.c
211
static void uchcom_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uchcom.c
218
static void uchcom_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/uchcom.c
510
uchcom_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uchcom.c
590
uchcom_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/uchcom.c
601
uchcom_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uchcom.c
612
uchcom_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uchcom.c
623
uchcom_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/uchcom.c
634
uchcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uchcom.c
652
uchcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uchcom.c
669
uchcom_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uchcom.c
681
uchcom_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uchcom.c
693
uchcom_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uchcom.c
701
uchcom_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uchcom.c
819
uchcom_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/ucycom.c
112
static void ucycom_cfg_open(struct ucom_softc *);
sys/bus/u4b/serial/ucycom.c
113
static void ucycom_start_read(struct ucom_softc *);
sys/bus/u4b/serial/ucycom.c
114
static void ucycom_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/ucycom.c
115
static void ucycom_start_write(struct ucom_softc *);
sys/bus/u4b/serial/ucycom.c
116
static void ucycom_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/ucycom.c
118
static int ucycom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ucycom.c
119
static void ucycom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ucycom.c
120
static void ucycom_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/ucycom.c
300
ucycom_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/ucycom.c
309
ucycom_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ucycom.c
317
ucycom_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ucycom.c
325
ucycom_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ucycom.c
333
ucycom_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ucycom.c
447
ucycom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ucycom.c
475
ucycom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ucycom.c
581
ucycom_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/ucycom.c
74
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/ufoma.c
1078
ufoma_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ufoma.c
1094
ufoma_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ufoma.c
1110
ufoma_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ufoma.c
1122
ufoma_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ufoma.c
1243
ufoma_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/ufoma.c
161
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/ufoma.c
206
static void ufoma_cfg_open(struct ucom_softc *);
sys/bus/u4b/serial/ufoma.c
207
static void ufoma_cfg_close(struct ucom_softc *);
sys/bus/u4b/serial/ufoma.c
208
static void ufoma_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/ufoma.c
209
static void ufoma_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/ufoma.c
211
static void ufoma_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/ufoma.c
212
static void ufoma_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/ufoma.c
213
static int ufoma_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ufoma.c
214
static void ufoma_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ufoma.c
217
static void ufoma_start_read(struct ucom_softc *);
sys/bus/u4b/serial/ufoma.c
218
static void ufoma_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/ufoma.c
219
static void ufoma_start_write(struct ucom_softc *);
sys/bus/u4b/serial/ufoma.c
220
static void ufoma_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/ufoma.c
221
static void ufoma_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/ufoma.c
828
ufoma_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/ufoma.c
846
ufoma_cfg_close(struct ucom_softc *ucom)
sys/bus/u4b/serial/ufoma.c
854
ufoma_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/ufoma.c
881
ufoma_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/ufoma.c
910
ufoma_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/ufoma.c
926
ufoma_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/ufoma.c
942
ufoma_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ufoma.c
948
ufoma_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uftdi.c
130
static void uftdi_cfg_open(struct ucom_softc *);
sys/bus/u4b/serial/uftdi.c
131
static void uftdi_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uftdi.c
132
static void uftdi_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uftdi.c
133
static void uftdi_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uftdi.c
136
static int uftdi_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uftdi.c
137
static void uftdi_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uftdi.c
138
static void uftdi_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/uftdi.c
140
static void uftdi_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uftdi.c
141
static void uftdi_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uftdi.c
142
static void uftdi_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uftdi.c
143
static void uftdi_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uftdi.c
145
static void uftdi_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/uftdi.c
354
uftdi_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/uftdi.c
494
uftdi_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uftdi.c
513
uftdi_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uftdi.c
532
uftdi_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uftdi.c
654
uftdi_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uftdi.c
665
uftdi_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uftdi.c
706
uftdi_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/uftdi.c
718
uftdi_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uftdi.c
726
uftdi_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uftdi.c
734
uftdi_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uftdi.c
742
uftdi_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uftdi.c
819
uftdi_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/uftdi.c
93
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/ugensa.c
100
static void ugensa_start_write(struct ucom_softc *);
sys/bus/u4b/serial/ugensa.c
101
static void ugensa_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/ugensa.c
102
static void ugensa_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/ugensa.c
331
ugensa_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ugensa.c
340
ugensa_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/ugensa.c
349
ugensa_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ugensa.c
358
ugensa_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/ugensa.c
367
ugensa_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/ugensa.c
76
struct ucom_softc *sc_ucom_ptr;
sys/bus/u4b/serial/ugensa.c
82
struct ucom_softc sc_ucom[UGENSA_IFACE_MAX];
sys/bus/u4b/serial/ugensa.c
98
static void ugensa_start_read(struct ucom_softc *);
sys/bus/u4b/serial/ugensa.c
99
static void ugensa_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uipaq.c
104
static void uipaq_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uipaq.c
105
static void uipaq_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uipaq.c
106
static void uipaq_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uipaq.c
107
static void uipaq_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uipaq.c
108
static void uipaq_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uipaq.c
109
static void uipaq_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uipaq.c
110
static void uipaq_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uipaq.c
111
static void uipaq_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/uipaq.c
1179
uipaq_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uipaq.c
1188
uipaq_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uipaq.c
1197
uipaq_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uipaq.c
1205
uipaq_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uipaq.c
1213
uipaq_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uipaq.c
1237
uipaq_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uipaq.c
1261
uipaq_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uipaq.c
1340
uipaq_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/uipaq.c
85
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/umcs.c
125
struct ucom_softc sc_ucom[UMCS7840_MAX_PORTS]; /* Need to be continuous
sys/bus/u4b/serial/umcs.c
152
static void umcs7840_cfg_get_status(struct ucom_softc *, uint8_t *, uint8_t *);
sys/bus/u4b/serial/umcs.c
153
static void umcs7840_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umcs.c
154
static void umcs7840_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umcs.c
155
static void umcs7840_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umcs.c
156
static void umcs7840_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umcs.c
157
static void umcs7840_cfg_open(struct ucom_softc *);
sys/bus/u4b/serial/umcs.c
158
static void umcs7840_cfg_close(struct ucom_softc *);
sys/bus/u4b/serial/umcs.c
160
static int umcs7840_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umcs.c
162
static void umcs7840_start_read(struct ucom_softc *);
sys/bus/u4b/serial/umcs.c
163
static void umcs7840_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/umcs.c
165
static void umcs7840_start_write(struct ucom_softc *);
sys/bus/u4b/serial/umcs.c
166
static void umcs7840_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/umcs.c
168
static void umcs7840_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/umcs.c
411
umcs7840_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/umcs.c
518
umcs7840_cfg_close(struct ucom_softc *ucom)
sys/bus/u4b/serial/umcs.c
540
umcs7840_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umcs.c
555
umcs7840_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umcs.c
570
umcs7840_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umcs.c
586
umcs7840_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umcs.c
662
umcs7840_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umcs.c
673
umcs7840_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umcs.c
686
umcs7840_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umcs.c
696
umcs7840_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umcs.c
709
umcs7840_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umcs.c
719
umcs7840_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/umcs.c
819
struct ucom_softc *ucom = &sc->sc_ucom[subunit];
sys/bus/u4b/serial/umcs.c
876
struct ucom_softc *ucom = &sc->sc_ucom[subunit];
sys/bus/u4b/serial/umcs.c
905
umcs7840_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/umct.c
129
static void umct_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/umct.c
131
static void umct_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umct.c
132
static void umct_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umct.c
133
static void umct_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umct.c
135
static int umct_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umct.c
136
static void umct_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umct.c
137
static void umct_start_read(struct ucom_softc *);
sys/bus/u4b/serial/umct.c
138
static void umct_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/umct.c
139
static void umct_start_write(struct ucom_softc *);
sys/bus/u4b/serial/umct.c
140
static void umct_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/umct.c
141
static void umct_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/umct.c
382
umct_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/umct.c
391
umct_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umct.c
404
umct_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umct.c
417
umct_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umct.c
460
umct_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umct.c
466
umct_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umct.c
507
umct_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umct.c
519
umct_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umct.c
531
umct_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umct.c
539
umct_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umct.c
629
umct_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/umct.c
96
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/umodem.c
162
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/umodem.c
192
static void umodem_start_read(struct ucom_softc *);
sys/bus/u4b/serial/umodem.c
193
static void umodem_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/umodem.c
194
static void umodem_start_write(struct ucom_softc *);
sys/bus/u4b/serial/umodem.c
195
static void umodem_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/umodem.c
197
static void umodem_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/umodem.c
199
static int umodem_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umodem.c
200
static void umodem_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umodem.c
201
static int umodem_ioctl(struct ucom_softc *, uint32_t, caddr_t, int,
sys/bus/u4b/serial/umodem.c
203
static void umodem_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umodem.c
204
static void umodem_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umodem.c
205
static void umodem_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umodem.c
209
static void umodem_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/umodem.c
486
umodem_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umodem.c
498
umodem_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umodem.c
510
umodem_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umodem.c
519
umodem_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umodem.c
549
umodem_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/umodem.c
560
umodem_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umodem.c
566
umodem_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umodem.c
616
umodem_ioctl(struct ucom_softc *ucom, uint32_t cmd, caddr_t data,
sys/bus/u4b/serial/umodem.c
645
umodem_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umodem.c
669
umodem_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umodem.c
693
umodem_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umodem.c
942
umodem_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/umoscom.c
175
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/umoscom.c
195
static void umoscom_cfg_open(struct ucom_softc *);
sys/bus/u4b/serial/umoscom.c
196
static void umoscom_cfg_close(struct ucom_softc *);
sys/bus/u4b/serial/umoscom.c
197
static void umoscom_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umoscom.c
198
static void umoscom_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umoscom.c
199
static void umoscom_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/umoscom.c
200
static int umoscom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umoscom.c
201
static void umoscom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umoscom.c
202
static void umoscom_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/umoscom.c
206
static void umoscom_start_read(struct ucom_softc *);
sys/bus/u4b/serial/umoscom.c
207
static void umoscom_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/umoscom.c
208
static void umoscom_start_write(struct ucom_softc *);
sys/bus/u4b/serial/umoscom.c
209
static void umoscom_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/umoscom.c
210
static void umoscom_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/umoscom.c
361
umoscom_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/umoscom.c
387
umoscom_cfg_close(struct ucom_softc *ucom)
sys/bus/u4b/serial/umoscom.c
393
umoscom_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umoscom.c
406
umoscom_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umoscom.c
419
umoscom_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/umoscom.c
432
umoscom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umoscom.c
441
umoscom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umoscom.c
496
umoscom_cfg_get_status(struct ucom_softc *ucom, uint8_t *p_lsr, uint8_t *p_msr)
sys/bus/u4b/serial/umoscom.c
560
umoscom_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umoscom.c
573
umoscom_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/umoscom.c
585
umoscom_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umoscom.c
593
umoscom_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/umoscom.c
701
umoscom_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/uplcom.c
145
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/uplcom.c
167
static void uplcom_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uplcom.c
168
static void uplcom_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uplcom.c
169
static void uplcom_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uplcom.c
170
static int uplcom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uplcom.c
171
static void uplcom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uplcom.c
172
static void uplcom_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uplcom.c
173
static void uplcom_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uplcom.c
174
static void uplcom_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uplcom.c
175
static void uplcom_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uplcom.c
176
static void uplcom_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/uplcom.c
178
static void uplcom_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/uplcom.c
528
uplcom_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uplcom.c
552
uplcom_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uplcom.c
576
uplcom_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uplcom.c
608
uplcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uplcom.c
640
uplcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uplcom.c
724
uplcom_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uplcom.c
736
uplcom_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uplcom.c
748
uplcom_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uplcom.c
756
uplcom_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uplcom.c
764
uplcom_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/uplcom.c
889
uplcom_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/usb_serial.c
1032
struct ucom_softc *sc;
sys/bus/u4b/serial/usb_serial.c
1061
struct ucom_softc *sc;
sys/bus/u4b/serial/usb_serial.c
1088
struct ucom_softc *sc = (struct ucom_softc *)dev->si_drv1;
sys/bus/u4b/serial/usb_serial.c
1305
struct ucom_softc *sc = (struct ucom_softc *)tp->t_sc;
sys/bus/u4b/serial/usb_serial.c
1361
struct ucom_softc *sc = task->sc;
sys/bus/u4b/serial/usb_serial.c
139
static struct ucom_softc *ucom_cons_softc = NULL;
sys/bus/u4b/serial/usb_serial.c
1424
ucom_line_state(struct ucom_softc *sc,
sys/bus/u4b/serial/usb_serial.c
1448
ucom_ring(struct ucom_softc *sc, uint8_t onoff)
sys/bus/u4b/serial/usb_serial.c
1459
ucom_break(struct ucom_softc *sc, uint8_t onoff)
sys/bus/u4b/serial/usb_serial.c
1470
ucom_dtr(struct ucom_softc *sc, uint8_t onoff)
sys/bus/u4b/serial/usb_serial.c
1481
ucom_rts(struct ucom_softc *sc, uint8_t onoff)
sys/bus/u4b/serial/usb_serial.c
1496
struct ucom_softc *sc = task->sc;
sys/bus/u4b/serial/usb_serial.c
160
static int ucom_attach_tty(struct ucom_super_softc *, struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.c
1602
ucom_status_change(struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
161
static void ucom_detach_tty(struct ucom_super_softc *, struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.c
162
static void ucom_queue_command(struct ucom_softc *,
sys/bus/u4b/serial/usb_serial.c
1624
struct ucom_softc *sc = task->sc;
sys/bus/u4b/serial/usb_serial.c
1642
struct ucom_softc *sc = (struct ucom_softc *)tp->t_sc;
sys/bus/u4b/serial/usb_serial.c
165
static void ucom_shutdown(struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.c
166
static void ucom_ring(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.c
167
static void ucom_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.c
168
static void ucom_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.c
169
static void ucom_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.c
171
static int ucom_open(struct ucom_softc *sc);
sys/bus/u4b/serial/usb_serial.c
172
static int ucom_close(struct ucom_softc *sc);
sys/bus/u4b/serial/usb_serial.c
1720
struct ucom_softc *sc = (struct ucom_softc *)tp->t_sc;
sys/bus/u4b/serial/usb_serial.c
1794
struct ucom_softc *sc = (struct ucom_softc *)tp->t_sc;
sys/bus/u4b/serial/usb_serial.c
181
static void disc_optim(struct tty *, struct termios *, struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.c
1844
ucom_get_data(struct ucom_softc *sc, struct usb_page_cache *pc,
sys/bus/u4b/serial/usb_serial.c
1949
ucom_put_data(struct ucom_softc *sc, struct usb_page_cache *pc,
sys/bus/u4b/serial/usb_serial.c
2161
disc_optim(struct tty *tp, struct termios *t, struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
295
ucom_attach(struct ucom_super_softc *ssc, struct ucom_softc *sc,
sys/bus/u4b/serial/usb_serial.c
367
ucom_detach(struct ucom_super_softc *ssc, struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
443
ucom_attach_tty(struct ucom_super_softc *ssc, struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
543
ucom_detach_tty(struct ucom_super_softc *ssc, struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
636
ucom_queue_command(struct ucom_softc *sc,
sys/bus/u4b/serial/usb_serial.c
683
ucom_shutdown(struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
705
ucom_cfg_is_gone(struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
717
struct ucom_softc *sc = task->sc;
sys/bus/u4b/serial/usb_serial.c
739
ucom_start_transfers(struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
761
struct ucom_softc *sc = task->sc;
sys/bus/u4b/serial/usb_serial.c
786
struct ucom_softc *sc = (struct ucom_softc *)dev->si_drv1;
sys/bus/u4b/serial/usb_serial.c
801
ucom_open(struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
911
struct ucom_softc *sc = task->sc;
sys/bus/u4b/serial/usb_serial.c
928
struct ucom_softc *sc = (struct ucom_softc *)dev->si_drv1;
sys/bus/u4b/serial/usb_serial.c
939
ucom_close(struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
984
struct ucom_softc *sc = tty_softc(tp);
sys/bus/u4b/serial/usb_serial.h
100
void (*ucom_cfg_close) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
101
int (*ucom_pre_open) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
102
int (*ucom_pre_param) (struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/usb_serial.h
103
int (*ucom_ioctl) (struct ucom_softc *, uint32_t, caddr_t, int, struct thread *);
sys/bus/u4b/serial/usb_serial.h
104
void (*ucom_start_read) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
105
void (*ucom_stop_read) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
106
void (*ucom_start_write) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
107
void (*ucom_stop_write) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
108
void (*ucom_tty_name) (struct ucom_softc *, char *pbuf, uint16_t buflen, uint16_t unit, uint16_t subunit);
sys/bus/u4b/serial/usb_serial.h
109
void (*ucom_poll) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
110
void (*ucom_free) (struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
126
struct ucom_softc *sc;
sys/bus/u4b/serial/usb_serial.h
131
struct ucom_softc *sc;
sys/bus/u4b/serial/usb_serial.h
224
struct ucom_softc *, int, void *,
sys/bus/u4b/serial/usb_serial.h
226
void ucom_detach(struct ucom_super_softc *, struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
228
void ucom_status_change(struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
229
uint8_t ucom_get_data(struct ucom_softc *, struct usb_page_cache *,
sys/bus/u4b/serial/usb_serial.h
231
void ucom_put_data(struct ucom_softc *, struct usb_page_cache *,
sys/bus/u4b/serial/usb_serial.h
233
uint8_t ucom_cfg_is_gone(struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.h
83
struct ucom_softc;
sys/bus/u4b/serial/usb_serial.h
93
void (*ucom_cfg_get_status) (struct ucom_softc *, uint8_t *plsr, uint8_t *pmsr);
sys/bus/u4b/serial/usb_serial.h
94
void (*ucom_cfg_set_dtr) (struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.h
95
void (*ucom_cfg_set_rts) (struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.h
96
void (*ucom_cfg_set_break) (struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.h
97
void (*ucom_cfg_set_ring) (struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/usb_serial.h
98
void (*ucom_cfg_param) (struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/usb_serial.h
99
void (*ucom_cfg_open) (struct ucom_softc *);
sys/bus/u4b/serial/uslcom.c
126
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/uslcom.c
145
static void uslcom_open(struct ucom_softc *);
sys/bus/u4b/serial/uslcom.c
146
static void uslcom_close(struct ucom_softc *);
sys/bus/u4b/serial/uslcom.c
147
static void uslcom_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uslcom.c
148
static void uslcom_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uslcom.c
149
static void uslcom_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uslcom.c
150
static int uslcom_ioctl(struct ucom_softc *, uint32_t, caddr_t, int,
sys/bus/u4b/serial/uslcom.c
152
static int uslcom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uslcom.c
153
static void uslcom_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uslcom.c
154
static void uslcom_get_status(struct ucom_softc *, uint8_t *, uint8_t *);
sys/bus/u4b/serial/uslcom.c
155
static void uslcom_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uslcom.c
156
static void uslcom_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uslcom.c
157
static void uslcom_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uslcom.c
158
static void uslcom_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uslcom.c
159
static void uslcom_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/uslcom.c
407
uslcom_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/uslcom.c
428
uslcom_close(struct ucom_softc *ucom)
sys/bus/u4b/serial/uslcom.c
449
uslcom_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uslcom.c
473
uslcom_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uslcom.c
497
uslcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uslcom.c
505
uslcom_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uslcom.c
586
uslcom_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/uslcom.c
597
uslcom_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uslcom.c
616
uslcom_ioctl(struct ucom_softc *ucom, uint32_t cmd, caddr_t data,
sys/bus/u4b/serial/uslcom.c
780
uslcom_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uslcom.c
789
uslcom_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uslcom.c
798
uslcom_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uslcom.c
806
uslcom_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uslcom.c
814
uslcom_poll(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvisor.c
168
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/uvisor.c
195
static void uvisor_cfg_open(struct ucom_softc *);
sys/bus/u4b/serial/uvisor.c
196
static void uvisor_cfg_close(struct ucom_softc *);
sys/bus/u4b/serial/uvisor.c
197
static void uvisor_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uvisor.c
198
static void uvisor_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uvisor.c
199
static void uvisor_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uvisor.c
200
static void uvisor_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uvisor.c
520
uvisor_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvisor.c
526
uvisor_cfg_close(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvisor.c
548
uvisor_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvisor.c
556
uvisor_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvisor.c
564
uvisor_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvisor.c
572
uvisor_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
141
struct ucom_softc sc_ucom;
sys/bus/u4b/serial/uvscom.c
166
static void uvscom_cfg_set_dtr(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uvscom.c
167
static void uvscom_cfg_set_rts(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uvscom.c
168
static void uvscom_cfg_set_break(struct ucom_softc *, uint8_t);
sys/bus/u4b/serial/uvscom.c
169
static int uvscom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uvscom.c
170
static void uvscom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uvscom.c
171
static int uvscom_pre_open(struct ucom_softc *);
sys/bus/u4b/serial/uvscom.c
172
static void uvscom_cfg_open(struct ucom_softc *);
sys/bus/u4b/serial/uvscom.c
173
static void uvscom_cfg_close(struct ucom_softc *);
sys/bus/u4b/serial/uvscom.c
174
static void uvscom_start_read(struct ucom_softc *);
sys/bus/u4b/serial/uvscom.c
175
static void uvscom_stop_read(struct ucom_softc *);
sys/bus/u4b/serial/uvscom.c
176
static void uvscom_start_write(struct ucom_softc *);
sys/bus/u4b/serial/uvscom.c
177
static void uvscom_stop_write(struct ucom_softc *);
sys/bus/u4b/serial/uvscom.c
178
static void uvscom_cfg_get_status(struct ucom_softc *, uint8_t *,
sys/bus/u4b/serial/uvscom.c
182
static void uvscom_poll(struct ucom_softc *ucom);
sys/bus/u4b/serial/uvscom.c
470
uvscom_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uvscom.c
485
uvscom_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uvscom.c
500
uvscom_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff)
sys/bus/u4b/serial/uvscom.c
515
uvscom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uvscom.c
536
uvscom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uvscom.c
618
uvscom_pre_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
634
uvscom_cfg_open(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
644
uvscom_cfg_close(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
654
uvscom_start_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
662
uvscom_stop_read(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
670
uvscom_start_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
678
uvscom_stop_write(struct ucom_softc *ucom)
sys/bus/u4b/serial/uvscom.c
686
uvscom_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr)
sys/bus/u4b/serial/uvscom.c
737
uvscom_poll(struct ucom_softc *ucom)