Searched refs:paramSelector (Results 1 – 3 of 3) sorted by relevance
/openbmc/phosphor-host-ipmid/ |
H A D | sys_info_param.cpp | 4 uint8_t paramSelector) const in lookup() 6 const auto iterator = params.find(paramSelector); in lookup() 17 void SysInfoParamStore::update(uint8_t paramSelector, const std::string& s) in update() argument 23 update(paramSelector, [s]() { in update() 29 void SysInfoParamStore::update(uint8_t paramSelector, in update() argument 32 params[paramSelector] = callback; in update()
|
H A D | sys_info_param.hpp | 26 uint8_t paramSelector) const = 0; 34 virtual void update(uint8_t paramSelector, const std::string& s) = 0; 44 virtual void update(uint8_t paramSelector, 57 std::tuple<bool, std::string> lookup(uint8_t paramSelector) const override; 58 void update(uint8_t paramSelector, const std::string& s) override; 59 void update(uint8_t paramSelector,
|
H A D | apphandler.cpp | 1397 bool getRevision, uint8_t paramSelector, in ipmiAppGetSystemInfo() argument 1400 if (reserved || (paramSelector >= invalidParamSelectorStart && in ipmiAppGetSystemInfo() 1401 paramSelector <= invalidParamSelectorEnd)) in ipmiAppGetSystemInfo() 1405 if (paramSelector >= oemCmdStart) in ipmiAppGetSystemInfo() 1414 if (paramSelector == 0) in ipmiAppGetSystemInfo() 1432 if (paramSelector == IPMI_SYSINFO_SYSTEM_FW_VERSION) in ipmiAppGetSystemInfo() 1445 sysInfoParamStore->lookup(paramSelector); in ipmiAppGetSystemInfo() 1485 ipmi::RspType<> ipmiAppSetSystemInfo(uint8_t paramSelector, uint8_t data1, in ipmiAppSetSystemInfo() argument 1488 if (paramSelector >= invalidParamSelectorStart && in ipmiAppSetSystemInfo() 1489 paramSelector <= invalidParamSelectorEnd) in ipmiAppSetSystemInfo() [all …]
|