| /OK3568_Linux_fs/external/xserver/hw/dmx/examples/ |
| H A D | xled.c | 85 if (xkb->indicators->phys_indicators & (1 << i)) { in main() 86 printf("led %d = %d\n", i, xkb->indicators->maps[i].flags); in main() 87 old[i] = xkb->indicators->maps[i].flags; in main() 88 xkb->indicators->maps[i].flags = XkbIM_NoAutomatic; in main() 103 if (xkb->indicators->phys_indicators & (1 << i)) in main() 104 printf("led %d = %d\n", i, xkb->indicators->maps[i].flags); in main() 119 if (xkb->indicators->phys_indicators & (i << 1)) in main() 120 xkb->indicators->maps[i].flags = old[i]; in main()
|
| /OK3568_Linux_fs/external/xserver/xkb/ |
| H A D | xkbDflts.h | 464 xkb->names->indicators[0] = GET_ATOM(dpy, "Caps Lock"); in initIndicatorNames() 465 xkb->names->indicators[1] = GET_ATOM(dpy, "Num Lock"); in initIndicatorNames() 466 xkb->names->indicators[2] = GET_ATOM(dpy, "Shift Lock"); in initIndicatorNames() 467 xkb->names->indicators[3] = GET_ATOM(dpy, "Mouse Keys"); in initIndicatorNames() 468 xkb->names->indicators[4] = GET_ATOM(dpy, "Scroll Lock"); in initIndicatorNames() 469 xkb->names->indicators[5] = GET_ATOM(dpy, "Group 2"); in initIndicatorNames()
|
| H A D | XKBAlloc.c | 283 if (xkb->indicators == NULL) { in XkbAllocIndicatorMaps() 284 xkb->indicators = calloc(1, sizeof(XkbIndicatorRec)); in XkbAllocIndicatorMaps() 285 if (!xkb->indicators) in XkbAllocIndicatorMaps() 294 if ((xkb != NULL) && (xkb->indicators != NULL)) { in XkbFreeIndicatorMaps() 295 free(xkb->indicators); in XkbFreeIndicatorMaps() 296 xkb->indicators = NULL; in XkbFreeIndicatorMaps()
|
| H A D | xkbLEDs.c | 287 changes->indicators.state_changes |= affected; in XkbUpdateLedAutoState() 556 sli->physIndicators = xkb->indicators->phys_indicators; in XkbAllocSrvLedInfo() 557 sli->names = xkb->names->indicators; in XkbAllocSrvLedInfo() 558 sli->maps = xkb->indicators->maps; in XkbAllocSrvLedInfo() 572 sli->physIndicators = xkb->indicators->phys_indicators; in XkbAllocSrvLedInfo() 573 if (xkb->names->indicators != sli->names) { in XkbAllocSrvLedInfo() 575 sli->names = xkb->names->indicators; in XkbAllocSrvLedInfo() 577 if (xkb->indicators->maps != sli->maps) { in XkbAllocSrvLedInfo() 579 sli->maps = xkb->indicators->maps; in XkbAllocSrvLedInfo() 754 if (changes->indicators.state_changes) in XkbFlushLedEvents() [all …]
|
| H A D | xkbInit.c | 422 if (names->indicators[LED_CAPS - 1] == None) in XkbInitNames() 423 names->indicators[LED_CAPS - 1] = CREATE_ATOM("Caps Lock"); in XkbInitNames() 424 if (names->indicators[LED_NUM - 1] == None) in XkbInitNames() 425 names->indicators[LED_NUM - 1] = CREATE_ATOM("Num Lock"); in XkbInitNames() 426 if (names->indicators[LED_SCROLL - 1] == None) in XkbInitNames() 427 names->indicators[LED_SCROLL - 1] = CREATE_ATOM("Scroll Lock"); in XkbInitNames() 429 if (names->indicators[LED_COMPOSE - 1] == None) in XkbInitNames() 430 names->indicators[LED_COMPOSE - 1] = CREATE_ATOM("Compose"); in XkbInitNames() 454 map = xkb->indicators; in XkbInitIndicatorMap()
|
| H A D | xkbout.c | 136 if (xkb->indicators != NULL) { in XkbWriteXKBKeycodes() 140 if (xkb->indicators->phys_indicators & (1 << i)) in XkbWriteXKBKeycodes() 144 if (xkb->names->indicators[i] != None) { in XkbWriteXKBKeycodes() 146 XkbAtomText(xkb->names->indicators[i], XkbXKBFile)); in XkbWriteXKBKeycodes() 331 if (xkb->indicators) { in XkbWriteXKBCompatMap() 333 XkbIndicatorMapPtr map = &xkb->indicators->maps[i]; in XkbWriteXKBCompatMap() 339 WriteXKBIndicatorMap(file, xkb, xkb->names->indicators[i], map, in XkbWriteXKBCompatMap()
|
| H A D | xkbUtils.c | 1342 memcpy(dst->names->indicators, src->names->indicators, in _XkbCopyNames() 1907 if (src->indicators) { in _XkbCopyIndicators() 1908 if (!dst->indicators) { in _XkbCopyIndicators() 1909 dst->indicators = malloc(sizeof(XkbIndicatorRec)); in _XkbCopyIndicators() 1910 if (!dst->indicators) in _XkbCopyIndicators() 1913 memcpy(dst->indicators, src->indicators, sizeof(XkbIndicatorRec)); in _XkbCopyIndicators() 1916 free(dst->indicators); in _XkbCopyIndicators() 1917 dst->indicators = NULL; in _XkbCopyIndicators()
|
| H A D | xkbfmisc.c | 209 if (xkb->indicators) in XkbWriteXKBKeymapForNames() 233 if (!xkb->indicators) in XkbWriteXKBKeymapForNames()
|
| H A D | xkb.c | 3203 XkbComputeGetIndicatorMapReplySize(XkbIndicatorPtr indicators, in XkbComputeGetIndicatorMapReplySize() argument 3209 rep->realIndicators = indicators->phys_indicators; in XkbComputeGetIndicatorMapReplySize() 3221 XkbIndicatorPtr indicators, xkbGetIndicatorMapReply * rep) in XkbSendIndicatorMap() argument 3239 wire->flags = indicators->maps[i].flags; in XkbSendIndicatorMap() 3240 wire->whichGroups = indicators->maps[i].which_groups; in XkbSendIndicatorMap() 3241 wire->groups = indicators->maps[i].groups; in XkbSendIndicatorMap() 3242 wire->whichMods = indicators->maps[i].which_mods; in XkbSendIndicatorMap() 3243 wire->mods = indicators->maps[i].mods.mask; in XkbSendIndicatorMap() 3244 wire->realMods = indicators->maps[i].mods.real_mods; in XkbSendIndicatorMap() 3245 wire->virtualMods = indicators->maps[i].mods.vmods; in XkbSendIndicatorMap() [all …]
|
| H A D | xkbEvents.c | 846 if (pChanges->indicators.map_changes) { in XkbSendNotification() 853 in.changed = pChanges->indicators.map_changes; in XkbSendNotification() 856 if (pChanges->indicators.state_changes) { in XkbSendNotification() 863 in.changed = pChanges->indicators.state_changes; in XkbSendNotification()
|
| H A D | XKBMisc.c | 804 if (xkb->indicators != NULL) { in XkbApplyVirtualModChanges() 807 map = &xkb->indicators->maps[0]; in XkbApplyVirtualModChanges() 817 changes->indicators.map_changes |= (1 << i); in XkbApplyVirtualModChanges()
|
| H A D | xkmread.c | 616 if ((xkb->indicators == NULL) && (XkbAllocIndicatorMaps(xkb) != Success)) { in ReadXkmIndicators() 626 xkb->indicators->phys_indicators = XkmGetCARD32(file, &nRead); in ReadXkmIndicators() 646 xkb->names->indicators[wire.indicator - 1] = name; in ReadXkmIndicators() 651 map = &xkb->indicators->maps[wire.indicator - 1]; in ReadXkmIndicators()
|
| H A D | xkbSwap.c | 361 swapl(&stuff->indicators); in SProcXkbSetNames()
|
| /OK3568_Linux_fs/kernel/drivers/s390/virtio/ |
| H A D | virtio_ccw.c | 50 unsigned long indicators; member 75 static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) in indicators() function 77 return &vcdev->dma_area->indicators; in indicators() 367 sizeof(indicators(vcdev))); in virtio_ccw_drop_indicator() 372 ccw->count = sizeof(indicators(vcdev)); in virtio_ccw_drop_indicator() 376 *indicators(vcdev) = 0; in virtio_ccw_drop_indicator() 387 ccw_device_dma_free(vcdev->cdev, indicatorp, sizeof(indicators(vcdev))); in virtio_ccw_drop_indicator() 689 sizeof(indicators(vcdev))); in virtio_ccw_find_vqs() 692 *indicatorp = (unsigned long) indicators(vcdev); in virtio_ccw_find_vqs() 701 *indicators(vcdev) = 0; in virtio_ccw_find_vqs() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/input/ |
| H A D | dmxcommon.c | 615 if (priv->xkb->indicators) { in dmxCommonSaveState() 616 priv->savedIndicators = *priv->xkb->indicators; in dmxCommonSaveState() 618 if (priv->xkb->indicators->phys_indicators & (1 << i)) { in dmxCommonSaveState() 619 priv->xkb->indicators->maps[i].flags in dmxCommonSaveState() 667 *priv->xkb->indicators = priv->savedIndicators; in dmxCommonRestoreState()
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kernel/ |
| H A D | rtas.c | 627 } *indicators; in rtas_indicator_present() local 629 indicators = of_get_property(rtas.dev, "rtas-indicators", &proplen); in rtas_indicator_present() 630 if (!indicators) in rtas_indicator_present() 636 if (__be32_to_cpu(indicators[i].token) != token) in rtas_indicator_present() 639 *maxindex = __be32_to_cpu(indicators[i].maxindex); in rtas_indicator_present()
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/dvb/ |
| H A D | dvb-fe-read-status.rst | 24 :ref:`Frontend statistics indicators <frontend-stat-properties>` for
|
| /OK3568_Linux_fs/external/xserver/include/ |
| H A D | xkbstr.h | 429 Atom indicators[XkbNumIndicators]; member 456 XkbIndicatorPtr indicators; member 551 XkbIndicatorChangesRec indicators; member
|
| /OK3568_Linux_fs/kernel/Documentation/hwmon/ |
| H A D | userspace-tools.rst | 39 If you want some graphical indicators of system health look for applications
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/iptraf/ |
| H A D | iptraf-ng_1.2.1.bb | 7 and activity indicators, TCP/UDP traffic breakdowns, and LAN station \
|
| /OK3568_Linux_fs/kernel/drivers/usb/common/ |
| H A D | Kconfig | 14 LEDs and you want to use them as activity indicators for USB host or
|
| /OK3568_Linux_fs/kernel/drivers/acpi/pmic/ |
| H A D | Kconfig | 61 general purpose indicators.
|
| /OK3568_Linux_fs/kernel/drivers/leds/trigger/ |
| H A D | Kconfig | 121 Enabling this option will allow to mark certain LEDs as panic indicators,
|
| /OK3568_Linux_fs/kernel/Documentation/virt/kvm/devices/ |
| H A D | s390_flic.rst | 80 swap whether the indicators need to be byte swapped, and flags contains
|
| /OK3568_Linux_fs/yocto/meta-browser/meta-chromium/ |
| H A D | README.md | 106 indicators.
|