Home
last modified time | relevance | path

Searched refs:rawInfo (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/reader/controller/
H A DPeripheralController.cpp90 if (!rawInfo.has_value()) { in setRawLightBrightness()
301 if (!rawInfo.has_value()) { in dump()
349 if (!rawInfo.has_value()) { in configureBattries()
353 std::make_unique<Battery>(getDeviceContext(), rawInfo->name, rawInfo->id); in configureBattries()
376 if (!rawInfo.has_value()) { in configureLights()
398 if (rawInfo->flags.test(InputLightClass::RED)) { in configureLights()
414 ALOGD("Light rawId %d name %s max %d flags %s \n", rawInfo->id, rawInfo->name.c_str(), in configureLights()
415 rawInfo->maxBrightness.value_or(MAX_BRIGHTNESS), rawInfo->flags.string().c_str()); in configureLights()
450 for (const auto& [rawId, rawInfo] : rawInfos) { in configureLights()
455 ALOGD("Multicolor light Id %d name %s \n", rawInfo.id, rawInfo.name.c_str()); in configureLights()
[all …]
/aosp12/hardware/interfaces/camera/common/1.0/default/
H A DCameraModule.cpp294 camera_info rawInfo, cameraInfo; in getCameraInfo() local
296 int ret = mModule->get_camera_info(cameraId, &rawInfo); in getCameraInfo()
301 int deviceVersion = rawInfo.device_version; in getCameraInfo()
304 *info = rawInfo; in getCameraInfo()
308 m.append(rawInfo.static_camera_characteristics); in getCameraInfo()
309 deriveCameraCharacteristicsKeys(rawInfo.device_version, m); in getCameraInfo()
310 cameraInfo = rawInfo; in getCameraInfo()