Lines Matching refs:elem
297 for (const auto& elem : persistent_devices_) { in GetPersistentSections() local
298 paired_devices.emplace_back(elem.first); in GetPersistentSections()
343 for (const auto& elem : *config_section) { in GetSectionNamesWithProperty()
344 auto it = elem.second.find(property); in GetSectionNamesWithProperty()
345 if (it != elem.second.end()) { in GetSectionNamesWithProperty()
346 result.emplace_back(SectionAndPropertyValue{.section = elem.first, .property = it->second}); in GetSectionNamesWithProperty()
351 for (const auto& elem : temporary_devices_) { in GetSectionNamesWithProperty() local
352 auto it = elem.second.find(property); in GetSectionNamesWithProperty()
353 if (it != elem.second.end()) { in GetSectionNamesWithProperty()
354 result.emplace_back(SectionAndPropertyValue{.section = elem.first, .property = it->second}); in GetSectionNamesWithProperty()
407 for (auto& elem : *config_section) { in FixDeviceTypeInconsistencies()
408 if (FixDeviceTypeInconsistencyInSection(elem.first, elem.second)) { in FixDeviceTypeInconsistencies()
414 for (auto& elem : temporary_devices_) { in FixDeviceTypeInconsistencies() local
415 if (FixDeviceTypeInconsistencyInSection(elem.first, elem.second)) { in FixDeviceTypeInconsistencies()