Searched refs:sc_q (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/hid/ |
H A D | hidraw.c | 96 uint8_t *sc_q; member 285 bcopy(buf, sc->sc_q + sc->sc_tail * sc->sc_rdesc->rdsize, len); in hidraw_intr() 289 bzero(sc->sc_q + sc->sc_tail * sc->sc_rdesc->rdsize + len, in hidraw_intr() 312 DPRINTFN(5, "waking %p\n", &sc->sc_q); in hidraw_lock_queue() 313 wakeup(&sc->sc_q); in hidraw_lock_queue() 367 sc->sc_q = malloc(sc->sc_rdesc->rdsize * HIDRAW_BUFFER_SIZE, M_DEVBUF, in hidraw_open() 397 free(sc->sc_q, M_DEVBUF); in hidraw_dtor() 399 sc->sc_q = NULL; in hidraw_dtor() 430 error = hid_get_report(sc->sc_dev, sc->sc_q, in hidraw_read() 434 error = uiomove(sc->sc_q, sc->sc_rdesc->isize, uio); in hidraw_read() [all …]
|