/frameworks/base/data/keyboards/ |
D | Vendor_0b05_Product_4500.kl | 39 led 0x00 CONTROLLER_1 40 led 0x01 CONTROLLER_2 41 led 0x02 CONTROLLER_3 42 led 0x03 CONTROLLER_4
|
D | Vendor_1532_Product_0900.kl | 39 led 0x00 CONTROLLER_1 40 led 0x01 CONTROLLER_2 41 led 0x02 CONTROLLER_3 42 led 0x03 CONTROLLER_4
|
D | Vendor_046d_Product_b501.kl | 62 led 0x00 CONTROLLER_1 63 led 0x01 CONTROLLER_2 64 led 0x02 CONTROLLER_3 65 led 0x03 CONTROLLER_4
|
D | Vendor_18d1_Product_2c40.kl | 35 led 0x00 CONTROLLER_1 36 led 0x01 CONTROLLER_2 37 led 0x02 CONTROLLER_3 38 led 0x03 CONTROLLER_4
|
D | Generic.kl | 433 led 0x00 NUM_LOCK 434 led 0x01 CAPS_LOCK 435 led 0x02 SCROLL_LOCK 436 led 0x03 COMPOSE 437 led 0x04 KANA 438 led 0x05 SLEEP 439 led 0x06 SUSPEND 440 led 0x07 MUTE 441 led 0x08 MISC 442 led 0x09 MAIL [all …]
|
/frameworks/native/services/inputflinger/ |
D | EventHub.h | 227 virtual bool hasLed(int32_t deviceId, int32_t led) const = 0; 228 virtual void setLedState(int32_t deviceId, int32_t led, bool on) = 0; 303 virtual bool hasLed(int32_t deviceId, int32_t led) const; 304 virtual void setLedState(int32_t deviceId, int32_t led, bool on); 429 status_t mapLed(Device* device, int32_t led, int32_t* outScanCode) const; 430 void setLedStateLocked(Device* device, int32_t led, bool on);
|
D | EventHub.cpp | 583 bool EventHub::hasLed(int32_t deviceId, int32_t led) const { in hasLed() 587 if (device && mapLed(device, led, &sc) == NO_ERROR) { in hasLed() 595 void EventHub::setLedState(int32_t deviceId, int32_t led, bool on) { in setLedState() argument 598 setLedStateLocked(device, led, on); in setLedState() 601 void EventHub::setLedStateLocked(Device* device, int32_t led, bool on) { in setLedStateLocked() argument 603 if (device && device->hasValidFd() && mapLed(device, led, &sc) != NAME_NOT_FOUND) { in setLedStateLocked() 1705 status_t EventHub::mapLed(Device* device, int32_t led, int32_t* outScanCode) const { in mapLed() argument 1711 if(device->keyMap.keyLayoutMap->findScanCodeForLed(led, &scanCode) != NAME_NOT_FOUND) { in mapLed()
|
D | InputReader.h | 916 void initializeLedState(LedState& ledState, int32_t led); 918 void updateLedStateForModifier(LedState& ledState, int32_t led,
|
D | InputReader.cpp | 2498 void KeyboardInputMapper::initializeLedState(LedState& ledState, int32_t led) { in initializeLedState() argument 2499 ledState.avail = getEventHub()->hasLed(getDeviceId(), led); in initializeLedState() 2513 int32_t led, int32_t modifier, bool reset) { in updateLedStateForModifier() argument 2517 getEventHub()->setLedState(getDeviceId(), led, desiredState); in updateLedStateForModifier()
|
/frameworks/native/include/input/ |
D | InputEventLabels.h | 25 #define DEFINE_LED(led) { #led, ALED_##led } argument
|
/frameworks/native/libs/input/ |
D | KeyLayoutMap.cpp | 443 Led led; in parseLed() local 444 led.ledCode = ledCode; in parseLed() 445 map.add(code, led); in parseLed()
|
/frameworks/native/services/inputflinger/tests/ |
D | InputReader_test.cpp | 469 void addLed(int32_t deviceId, int32_t led, bool initialState) { in addLed() argument 471 device->leds.add(led, initialState); in addLed() 474 bool getLedState(int32_t deviceId, int32_t led) { in getLedState() argument 476 return device->leds.valueFor(led); in getLedState() 711 virtual bool hasLed(int32_t deviceId, int32_t led) const { in hasLed() 713 return device && device->leds.indexOfKey(led) >= 0; in hasLed() 716 virtual void setLedState(int32_t deviceId, int32_t led, bool on) { in setLedState() argument 719 ssize_t index = device->leds.indexOfKey(led); in setLedState() 721 device->leds.replaceValueAt(led, on); in setLedState() 725 "was not present. led=" << led; in setLedState()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | CameraDeviceClient.cpp | 2052 uint8_t led = entry.data.u8[i]; in enforceRequestPermissions() local 2054 switch(led) { in enforceRequestPermissions()
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | Parameters.cpp | 2077 uint8_t led = entry.data.u8[i]; in updateRequest() local 2079 switch(led) { in updateRequest()
|