Lines Matching defs:utoppy_softc
134 struct utoppy_softc { struct
135 device_t sc_dev;
136 struct usbd_device *sc_udev; /* device */
137 struct usbd_interface *sc_iface; /* interface */
138 int sc_dying;
139 int sc_refcnt;
141 enum utoppy_state sc_state;
142 u_int sc_turbo_mode;
144 int sc_out;
145 struct usbd_pipe *sc_out_pipe; /* bulk out pipe */
146 struct usbd_xfer *sc_out_xfer;
147 void *sc_out_buf;
148 void *sc_out_data;
149 uint64_t sc_wr_offset;
150 uint64_t sc_wr_size;
152 int sc_in;
153 struct usbd_pipe *sc_in_pipe; /* bulk in pipe */
154 struct usbd_xfer *sc_in_xfer;
155 void *sc_in_buf;
156 void *sc_in_data;
157 size_t sc_in_len;
158 u_int sc_in_offset;