Home | History | Annotate | Download | only in wscons

Lines Matching defs:new_state

777 	int new_state;
781 new_state = sc->sc_ledstate;
786 new_state |= WSKBD_LED_SCROLL;
791 new_state &= ~WSKBD_LED_SCROLL;
793 if (new_state != sc->sc_ledstate) {
795 new_state);
796 sc->sc_ledstate = new_state;
1448 int new_state;
1450 new_state = 0;
1452 new_state |= WSKBD_LED_CAPS;
1454 new_state |= WSKBD_LED_NUM;
1456 new_state |= WSKBD_LED_COMPOSE;
1458 new_state |= WSKBD_LED_SCROLL;
1460 if (id->t_sc && new_state != id->t_sc->sc_ledstate) {
1462 (id->t_sc->sc_accesscookie, new_state);
1463 id->t_sc->sc_ledstate = new_state;