Lines Matching refs:lightId
275 for (const auto& [lightId, light] : mLights) { in populateDeviceInfo()
286 for (const auto& [lightId, light] : mLights) { in dump()
287 dump += StringPrintf(INDENT4 "Id: %d", lightId); in dump()
482 bool PeripheralController::setLightColor(int32_t lightId, int32_t color) { in setLightColor() argument
483 auto it = mLights.find(lightId); in setLightColor()
489 ALOGD("setLightColor lightId %d type %s color 0x%x", lightId, in setLightColor()
495 std::optional<int32_t> PeripheralController::getLightColor(int32_t lightId) { in getLightColor() argument
496 auto it = mLights.find(lightId); in getLightColor()
503 ALOGD("getLightColor lightId %d type %s color 0x%x", lightId, in getLightColor()
509 bool PeripheralController::setLightPlayerId(int32_t lightId, int32_t playerId) { in setLightPlayerId() argument
510 auto it = mLights.find(lightId); in setLightPlayerId()
518 std::optional<int32_t> PeripheralController::getLightPlayerId(int32_t lightId) { in getLightPlayerId() argument
519 auto it = mLights.find(lightId); in getLightPlayerId()