Lines Matching refs:ucom_softc

165 	struct ucom_softc sc_ucom;
212 static void uchcom_free(struct ucom_softc *);
213 static int uchcom_pre_param(struct ucom_softc *, struct termios *);
214 static void uchcom_cfg_get_status(struct ucom_softc *, uint8_t *,
216 static void uchcom_cfg_open(struct ucom_softc *ucom);
217 static void uchcom_cfg_param(struct ucom_softc *, struct termios *);
218 static void uchcom_cfg_set_break(struct ucom_softc *, uint8_t);
219 static void uchcom_cfg_set_dtr(struct ucom_softc *, uint8_t);
220 static void uchcom_cfg_set_rts(struct ucom_softc *, uint8_t);
221 static void uchcom_start_read(struct ucom_softc *);
222 static void uchcom_start_write(struct ucom_softc *);
223 static void uchcom_stop_read(struct ucom_softc *);
224 static void uchcom_stop_write(struct ucom_softc *);
231 static void uchcom_poll(struct ucom_softc *ucom);
400 uchcom_free(struct ucom_softc *ucom) in uchcom_free()
553 uchcom_cfg_set_break(struct ucom_softc *ucom, uint8_t onoff) in uchcom_cfg_set_break()
637 uchcom_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr) in uchcom_cfg_get_status()
649 uchcom_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff) in uchcom_cfg_set_dtr()
660 uchcom_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff) in uchcom_cfg_set_rts()
671 uchcom_cfg_open(struct ucom_softc *ucom) in uchcom_cfg_open()
682 uchcom_pre_param(struct ucom_softc *ucom, struct termios *t) in uchcom_pre_param()
704 uchcom_cfg_param(struct ucom_softc *ucom, struct termios *t) in uchcom_cfg_param()
736 uchcom_start_read(struct ucom_softc *ucom) in uchcom_start_read()
748 uchcom_stop_read(struct ucom_softc *ucom) in uchcom_stop_read()
760 uchcom_start_write(struct ucom_softc *ucom) in uchcom_start_write()
768 uchcom_stop_write(struct ucom_softc *ucom) in uchcom_stop_write()
885 uchcom_poll(struct ucom_softc *ucom) in uchcom_poll()