Home
last modified time | relevance | path

Searched refs:CustomDBus (Results 1 – 3 of 3) sorted by relevance

/openbmc/pldm/host-bmc/dbus/
H A Dcustom_dbus.cpp7 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 Dcustom_dbus.hpp43 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 Dcustom_dbus_test.cpp6 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()