Searched refs:CustomDBus (Results 1 – 4 of 4) sorted by relevance
| /openbmc/pldm/host-bmc/dbus/ |
| H A D | custom_dbus.cpp | 7 void CustomDBus::setLocationCode(const std::string& path, std::string value) in setLocationCode() 19 std::optional<std::string> CustomDBus::getLocationCode( in getLocationCode() 30 void CustomDBus::implementCpuCoreInterface(const std::string& path) in implementCpuCoreInterface() 39 void CustomDBus::setMicroCode(const std::string& path, uint32_t value) in setMicroCode() 49 std::optional<uint32_t> CustomDBus::getMicroCode(const std::string& path) const in getMicroCode() 59 void CustomDBus::implementPCIeSlotInterface(const std::string& path) in implementPCIeSlotInterface() 68 void CustomDBus::setSlotType(const std::string& path, in setSlotType() 79 void CustomDBus::implementPCIeDeviceInterface(const std::string& path) in implementPCIeDeviceInterface() 88 void CustomDBus::setPCIeDeviceProps(const std::string& path, size_t lanesInUse, in setPCIeDeviceProps() 101 void CustomDBus::implementCableInterface(const std::string& path) in implementCableInterface() [all …]
|
| H A D | custom_dbus.hpp | 43 class CustomDBus class 46 CustomDBus() {} in CustomDBus() function in pldm::dbus::CustomDBus 49 CustomDBus(const CustomDBus&) = delete; 50 CustomDBus(CustomDBus&&) = delete; 51 CustomDBus& operator=(const CustomDBus&) = delete; 52 CustomDBus& operator=(CustomDBus&&) = delete; 53 ~CustomDBus() = default; 55 static CustomDBus& getCustomDBus() in getCustomDBus() 57 static CustomDBus customDBus; in getCustomDBus()
|
| /openbmc/pldm/host-bmc/test/ |
| H A D | custom_dbus_test.cpp | 6 TEST(CustomDBus, LocationCode) in TEST() argument 11 CustomDBus::getCustomDBus().setLocationCode(tmpPath, locationCode); in TEST() 12 auto retLocationCode = CustomDBus::getCustomDBus().getLocationCode(tmpPath); in TEST() 18 TEST(CustomDBus, MicroCode) in TEST() argument 23 CustomDBus::getCustomDBus().setMicroCode(tmpPath, value); in TEST() 24 auto retMicroCode = CustomDBus::getCustomDBus().getMicroCode(tmpPath); in TEST()
|
| /openbmc/pldm/host-bmc/ |
| H A D | host_pdr_handler.cpp | 158 CustomDBus::getCustomDBus().setAvailabilityState(path, false); in setPresenceFrus() 1146 CustomDBus::getCustomDBus().setLocationCode( in setFRUDataOnDBus() 1161 CustomDBus::getCustomDBus().updateItemPresentStatus(path, true); in setPresentPropertyStatus() 1166 CustomDBus::getCustomDBus().setAvailabilityState(path, true); in setAvailabilityState() 1184 CustomDBus::getCustomDBus().implementCpuCoreInterface( in createDbusObjects() 1188 CustomDBus::getCustomDBus().implementChassisInterface( in createDbusObjects() 1192 CustomDBus::getCustomDBus().implementPowerSupplyInterface( in createDbusObjects() 1196 CustomDBus::getCustomDBus().implementPanelInterface( in createDbusObjects() 1200 CustomDBus::getCustomDBus().implementVRMInterface(entity.first); in createDbusObjects() 1203 CustomDBus::getCustomDBus().implementPCIeSlotInterface( in createDbusObjects() [all …]
|