Home
last modified time | relevance | path

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

/hardware/interfaces/automotive/ivn_android_device/impl/default/src/
DIvnAndroidDeviceService.cpp127 mDeviceInfoById[deviceId] = deviceInfo; in init()
129 if (mDeviceInfoById.find(mMyDeviceId) == mDeviceInfoById.end()) { in init()
143 for (const auto& [deviceId, _] : mDeviceInfoById) { in getOtherDeviceIds()
153 for (const auto& [deviceId, deviceInfo] : mDeviceInfoById) { in getDeviceIdForOccupantZone()
167 if (mDeviceInfoById.find(androidDeviceId) == mDeviceInfoById.end()) { in getOccupantZonesForDevice()
171 for (const auto& occupantZoneInfo : mDeviceInfoById[androidDeviceId].occupantZones) { in getOccupantZonesForDevice()
178 *endpointInfo = mDeviceInfoById[mMyDeviceId].endpointInfo; in getMyEndpointInfo()
184 if (mDeviceInfoById.find(androidDeviceId) == mDeviceInfoById.end()) { in getEndpointInfoForDevice()
188 *endpointInfo = mDeviceInfoById[androidDeviceId].endpointInfo; in getEndpointInfoForDevice()
/hardware/interfaces/automotive/ivn_android_device/impl/default/include/
DIvnAndroidDeviceService.h69 std::unordered_map<int, DeviceInfo> mDeviceInfoById; variable