Lines Matching refs:ucom_softc
103 struct ucom_softc sc_ucom[U3G_MAXPORTS];
126 static void u3g_cfg_get_status(struct ucom_softc *, uint8_t *, uint8_t *);
127 static void u3g_cfg_set_dtr(struct ucom_softc *, uint8_t);
128 static void u3g_cfg_set_rts(struct ucom_softc *, uint8_t);
129 static void u3g_start_read(struct ucom_softc *ucom);
130 static void u3g_stop_read(struct ucom_softc *ucom);
131 static void u3g_start_write(struct ucom_softc *ucom);
132 static void u3g_stop_write(struct ucom_softc *ucom);
133 static void u3g_poll(struct ucom_softc *ucom);
134 static void u3g_free(struct ucom_softc *ucom);
1097 u3g_free(struct ucom_softc *ucom) in u3g_free()
1103 u3g_start_read(struct ucom_softc *ucom) in u3g_start_read()
1115 u3g_stop_read(struct ucom_softc *ucom) in u3g_stop_read()
1127 u3g_start_write(struct ucom_softc *ucom) in u3g_start_write()
1135 u3g_stop_write(struct ucom_softc *ucom) in u3g_stop_write()
1145 struct ucom_softc *ucom = usbd_xfer_softc(xfer); in u3g_write_callback()
1181 struct ucom_softc *ucom = usbd_xfer_softc(xfer); in u3g_read_callback()
1209 u3g_cfg_get_status(struct ucom_softc *ucom, uint8_t *lsr, uint8_t *msr) in u3g_cfg_get_status()
1219 u3g_cfg_set_line(struct ucom_softc *ucom) in u3g_cfg_set_line()
1236 u3g_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff) in u3g_cfg_set_dtr()
1251 u3g_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff) in u3g_cfg_set_rts()
1268 struct ucom_softc *ucom = usbd_xfer_softc(xfer); in u3g_intr_callback()
1334 u3g_poll(struct ucom_softc *ucom) in u3g_poll()