Home
last modified time | relevance | path

Searched refs:systemType (Results 1 – 12 of 12) sorted by relevance

/openbmc/pldm/libpldmresponder/
H A Dplatform_config.cpp54 systemType = sysType.value(); in systemCompatibleCallback()
58 sysTypeCallback(systemType, true); in systemCompatibleCallback()
62 if (!systemType.empty()) in systemCompatibleCallback()
74 if (!systemType.empty()) in getPlatformName()
76 return fs::path{systemType}; in getPlatformName()
124 systemType = sysType.value(); in getPlatformName()
126 return fs::path{systemType}; in getPlatformName()
H A Dplatform_config.hpp56 std::string systemType; member in pldm::responder::platform_config::Handler
H A Dbios_config.cpp69 auto systemType = platformConfigHandler->getPlatformName(); in checkSystemTypeAvailability() local
70 if (systemType.has_value()) in checkSystemTypeAvailability()
73 sysType = systemType.value(); in checkSystemTypeAvailability()
85 void BIOSConfig::initBIOSAttributes(const std::string& systemType, in initBIOSAttributes() argument
88 sysType = systemType; in initBIOSAttributes()
H A Dplatform.cpp186 auto systemType = platformConfigHandler->getPlatformName(); in getPDR() local
187 if (systemType.has_value()) in getPDR()
194 pdrJsonsDir.push_back(pdrJsonDir / systemType.value()); in getPDR()
/openbmc/phosphor-power/phosphor-regulators/src/
H A Dmanager.cpp245 for (const std::string& systemType : compatibleSystemTypes) in findConfigFile() local
249 fileNames.emplace_back(systemType + ".json"); in findConfigFile()
253 std::string::size_type pos = systemType.rfind('.'); in findConfigFile()
254 if ((pos != std::string::npos) && ((systemType.size() - pos) > 1)) in findConfigFile()
256 fileNames.emplace_back(systemType.substr(pos + 1) + ".json"); in findConfigFile()
/openbmc/openpower-vpd-parser/configuration/
H A Dconfiguration.hpp17 types::SystemTypeMap systemType{ variable
/openbmc/phosphor-power/phosphor-power-sequencer/src/
H A Dconfig_file_parser.cpp48 for (const std::string& systemType : compatibleSystemTypes) in find() local
52 fileName = systemType + ".json"; in find()
62 std::string::size_type pos = systemType.rfind('.'); in find()
63 if ((pos != std::string::npos) && ((systemType.size() - pos) > 1)) in find()
65 fileName = systemType.substr(pos + 1) + ".json"; in find()
/openbmc/webui-vue/src/store/modules/HardwareStatus/
H A DSystemStore.js36 system.systemType = data.SystemType;
/openbmc/webui-vue/src/views/HardwareStatus/Inventory/
H A DInventoryTableSystem.vue97 <dt>{{ $t('pageInventory.table.systemType') }}:</dt>
99 {{ dataFormatter(item.systemType) }}
/openbmc/smbios-mdr/src/
H A Dsystem.cpp40 dataIn = getSMBIOSTypePtr(dataIn, systemType); in uuid()
/openbmc/smbios-mdr/include/
H A Dsmbios_mdrv2.hpp190 systemType = 1, enumerator
/openbmc/openpower-vpd-parser/vpd-manager/oem-handler/
H A Dibm_handler.cpp564 auto l_itrToIM = config::systemType.find(l_imKwdValue); in getSystemJson()
565 if (l_itrToIM == config::systemType.end()) in getSystemJson()