Home
last modified time | relevance | path

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

/openbmc/pldm/host-bmc/dbus/
H A Dcustom_dbus.cpp32 if (!cpuCore.contains(path)) in implementCpuCoreInterface()
34 cpuCore.emplace(path, std::make_unique<CPUCore>( in implementCpuCoreInterface()
41 if (!cpuCore.contains(path)) in setMicroCode()
43 cpuCore.emplace(path, std::make_unique<CPUCore>( in setMicroCode()
46 cpuCore.at(path)->microcode(value); in setMicroCode()
51 if (cpuCore.contains(path)) in getMicroCode()
53 return cpuCore.at(path)->microcode(); in getMicroCode()
H A Dcustom_dbus.hpp231 std::unordered_map<ObjectPath, std::unique_ptr<CPUCore>> cpuCore; member in pldm::dbus::CustomDBus