HomeSort by: relevance | last modified time | path
    Searched defs:sc_repeat (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/dev/bluetooth/
btkbd.c 139 callout_t sc_repeat; member in struct:btkbd_softc
229 callout_init(&sc->sc_repeat, 0);
230 callout_setfunc(&sc->sc_repeat, btkbd_repeat, sc);
254 callout_halt(&sc->sc_repeat, NULL);
255 callout_destroy(&sc->sc_repeat);
403 callout_stop(&sc->sc_repeat);
584 callout_stop(&sc->sc_repeat);
587 callout_schedule(&sc->sc_repeat, hz * REP_DELAY1 / 1000);
615 callout_schedule(&sc->sc_repeat, hz * REP_DELAYN / 1000);
  /src/sys/dev/wscons/
wsmouse.c 169 struct wsmouse_repeat sc_repeat; member in struct:wsmouse_softc
269 memset(&sc->sc_repeat, 0, sizeof(sc->sc_repeat));
472 KASSERT(sc->sc_repeat.wr_buttons &
503 if ((mb & d) && (sc->sc_repeat.wr_buttons & (1 << btnno)) &&
504 sc->sc_repeat.wr_delay_first > 0) {
506 sc->sc_repeat_delay = sc->sc_repeat.wr_delay_first;
585 KASSERT(sc->sc_repeat.wr_buttons & (1 << sc->sc_repeat_button));
597 if (newdelay - sc->sc_repeat.wr_delay_decrement <
598 sc->sc_repeat.wr_delay_minimum
    [all...]

Completed in 15 milliseconds