Home
last modified time | relevance | path

Searched refs:configsByPropId (Results 1 – 3 of 3) sorted by relevance

/hardware/interfaces/automotive/vehicle/aidl/impl/vhal/src/
DDefaultVehicleHal.cpp400 const auto& configsByPropId = getConfigsByPropId(); in getAllPropConfigs() local
406 output->payloads.reserve(configsByPropId.size()); in getAllPropConfigs()
407 for (const auto& [_, config] : configsByPropId) { in getAllPropConfigs()
414 const auto& configsByPropId = getConfigsByPropId(); in getConfig() local
415 auto it = configsByPropId.find(propId); in getConfig()
416 if (it == configsByPropId.end()) { in getConfig()
662 const auto& configsByPropId = getConfigsByPropId(); in getPropConfigs() local
664 auto it = configsByPropId.find(prop); in getPropConfigs()
665 if (it != configsByPropId.end()) { in getPropConfigs()
695 const auto& configsByPropId = getConfigsByPropId(); in checkSubscribeOptions() local
[all …]
/hardware/interfaces/automotive/vehicle/aidl/impl/default_config/JsonConfigLoader/src/
DJsonConfigLoader.cpp676 std::unordered_map<int32_t, ConfigDeclaration> configsByPropId; in parseJsonConfig() local
691 configsByPropId[maybeConfig.value().config.prop] = std::move(maybeConfig.value()); in parseJsonConfig()
697 return configsByPropId; in parseJsonConfig()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/src/
DFakeVehicleHardware.cpp378 std::unordered_map<int32_t, ConfigDeclaration> configsByPropId; in loadConfigDeclarations() local
379 bool defaultConfigLoaded = loadPropConfigsFromDir(mDefaultConfigDir, &configsByPropId); in loadConfigDeclarations()
386 loadPropConfigsFromDir(mOverrideConfigDir, &configsByPropId); in loadConfigDeclarations()
388 return configsByPropId; in loadConfigDeclarations()
2425 std::unordered_map<int32_t, ConfigDeclaration>* configsByPropId) { in loadPropConfigsFromDir() argument
2447 (*configsByPropId)[propId] = std::move(configDeclaration); in loadPropConfigsFromDir()