Home | History | Annotate | Download | only in xkbcomp

Lines Matching refs:led

152     const struct xkb_led *led;
175 xkb_leds_enumerate(idx, led, keymap)
176 if (led->name != XKB_ATOM_NONE)
178 idx + 1, xkb_atom_text(keymap->ctx, led->name));
245 const struct xkb_led *led)
248 xkb_atom_text(keymap->ctx, led->name));
250 if (led->which_groups) {
251 if (led->which_groups != XKB_STATE_LAYOUT_EFFECTIVE) {
253 LedStateMaskText(keymap->ctx, led->which_groups));
256 led->groups);
259 if (led->which_mods) {
260 if (led->which_mods != XKB_STATE_MODS_EFFECTIVE) {
262 LedStateMaskText(keymap->ctx, led->which_mods));
265 ModMaskText(keymap->ctx, &keymap->mods, led->mods.mods));
268 if (led->ctrls) {
270 ControlMaskText(keymap->ctx, led->ctrls));
408 const struct xkb_led *led;
444 xkb_leds_foreach(led, keymap)
445 if (led->which_groups || led->groups || led->which_mods ||
446 led->mods.mods || led->ctrls)
447 write_led_map(keymap, buf, led);