Home
last modified time | relevance | path

Searched refs:findName (Results 1 – 7 of 7) sorted by relevance

/openbmc/entity-manager/src/
H A Dentity_manager.hpp141 auto findName = record.find("Name"); in logDeviceAdded() local
142 if (findName != record.end()) in logDeviceAdded()
144 name = findName->get<std::string>(); in logDeviceAdded()
195 auto findName = record.find("Name"); in logDeviceRemoved() local
196 if (findName != record.end()) in logDeviceRemoved()
198 name = findName->get<std::string>(); in logDeviceRemoved()
H A Dentity_manager.cpp490 auto findName = newData.find("Name"); in createAddObjectMethod() local
492 if (findName == newData.end() || findType == newData.end()) in createAddObjectMethod()
497 const std::string* name = findName->get_ptr<const std::string*>(); in createAddObjectMethod()
669 auto findName = item.find("Name"); in postToDbus() local
670 if (findName == item.end()) in postToDbus()
696 std::string itemName = findName->get<std::string>(); in postToDbus()
H A Dperform_scan.cpp583 auto findName = it->find("Name"); in run() local
584 if (findName == it->end()) in run()
590 std::string probeName = *findName; in run()
/openbmc/dbus-sensors/src/intel-cpu/
H A DIntelCPUSensor.hpp68 auto findName = gpioConfig.find("Name"); in cpuIsPresent() local
69 if (findName == gpioConfig.end()) in cpuIsPresent()
74 std::visit(VariantToStringVisitor(), findName->second); in cpuIsPresent()
H A DIntelCPUSensorMain.cpp726 auto findName = cfg.find("Name"); in getCpuConfig() local
727 if (findName == cfg.end()) in getCpuConfig()
732 std::visit(VariantToStringVisitor(), findName->second); in getCpuConfig()
/openbmc/dbus-sensors/src/adc/
H A DADCSensorMain.cpp274 auto findName = cfgMap.find("Name"); in createSensors() local
275 if (findName != cfgMap.end()) in createSensors()
278 VariantToStringVisitor(), findName->second); in createSensors()
/openbmc/dbus-sensors/src/intrusion/
H A DIntrusionSensorMain.cpp262 auto findName = baseConfiguration->second.find("Name"); in getNicNameInfo() local
265 findName != baseConfiguration->second.end()) in getNicNameInfo()
270 std::get_if<std::string>(&findName->second); in getNicNameInfo()