/openbmc/phosphor-power/phosphor-regulators/src/interfaces/ |
H A D | manager_interface.hpp | 20 class ManagerInterface class 32 ManagerInterface() = delete; 33 ManagerInterface(const ManagerInterface&) = delete; 34 ManagerInterface& operator=(const ManagerInterface&) = delete; 35 ManagerInterface(ManagerInterface&&) = delete; 36 ManagerInterface& operator=(ManagerInterface&&) = delete; 37 virtual ~ManagerInterface() = default; 44 ManagerInterface(sdbusplus::bus_t& bus, const char* path);
|
H A D | manager_interface.cpp | 36 ManagerInterface::ManagerInterface(sdbusplus::bus_t& bus, const char* path) : in ManagerInterface() function in phosphor::power::regulators::interface::ManagerInterface 40 int ManagerInterface::callbackConfigure(sd_bus_message* msg, void* context, in callbackConfigure() 49 auto mgrObj = static_cast<ManagerInterface*>(context); in callbackConfigure() 72 int ManagerInterface::callbackMonitor(sd_bus_message* msg, void* context, in callbackMonitor() 84 auto mgrObj = static_cast<ManagerInterface*>(context); in callbackMonitor() 107 const sdbusplus::vtable::vtable_t ManagerInterface::_vtable[] = {
|
/openbmc/phosphor-ipmi-blobs/ |
H A D | ipmi.hpp | 148 Resp getBlobCount(ManagerInterface* mgr, std::span<const uint8_t> data); 158 Resp enumerateBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 163 Resp openBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 168 Resp closeBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 173 Resp deleteBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 178 Resp statBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 183 Resp sessionStatBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 188 Resp commitBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 193 Resp readBlob(ManagerInterface* mgr, std::span<const uint8_t> data); 198 Resp writeBlob(ManagerInterface* mgr, std::span<const uint8_t> data); [all …]
|
H A D | ipmi.cpp | 78 Resp getBlobCount(ManagerInterface* mgr, std::span<const uint8_t>) in getBlobCount() 91 Resp enumerateBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in enumerateBlob() 110 Resp openBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in openBlob() 136 Resp closeBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in closeBlob() 154 Resp deleteBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in deleteBlob() 191 Resp statBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in statBlob() 209 Resp sessionStatBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in sessionStatBlob() 229 Resp commitBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in commitBlob() 250 Resp readBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in readBlob() 276 Resp writeBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in writeBlob() [all …]
|
H A D | process.cpp | 63 return [](ManagerInterface*, std::span<const uint8_t>) { in validateBlobCommand() argument 74 return [](ManagerInterface*, std::span<const uint8_t>) { in validateBlobCommand() argument 93 return [](ManagerInterface*, std::span<const uint8_t>) { in validateBlobCommand() argument 108 return [](ManagerInterface*, std::span<const uint8_t>) { in validateBlobCommand() argument 118 return [](ManagerInterface*, std::span<const uint8_t>) { in validateBlobCommand() argument 126 Resp processBlobCommand(IpmiBlobHandler cmd, ManagerInterface* mgr, in processBlobCommand()
|
H A D | manager.hpp | 39 class ManagerInterface class 42 virtual ~ManagerInterface() = default; 77 class BlobManager : public ManagerInterface 289 ManagerInterface* getBlobManager();
|
H A D | process.hpp | 19 std::function<Resp(ManagerInterface* mgr, std::span<const uint8_t> data)>; 40 Resp processBlobCommand(IpmiBlobHandler cmd, ManagerInterface* mgr,
|
H A D | utils.hpp | 31 void loadLibraries(ManagerInterface* manager, const std::string& path,
|
H A D | utils.cpp | 42 void loadLibraries(ManagerInterface* manager, const std::string& path, in loadLibraries()
|
H A D | manager.cpp | 331 ManagerInterface* getBlobManager() in getBlobManager()
|
/openbmc/phosphor-ipmi-blobs/test/ |
H A D | process_unittest.cpp | 43 Resp (*const* lPtr)(ManagerInterface*, std::span<const uint8_t>) = in EqualFunctions() 44 lhs.target<Resp (*)(ManagerInterface*, std::span<const uint8_t>)>(); in EqualFunctions() 46 Resp (*const* rPtr)(ManagerInterface*, std::span<const uint8_t>) = in EqualFunctions() 47 rhs.target<Resp (*)(ManagerInterface*, std::span<const uint8_t>)>(); in EqualFunctions() 167 IpmiBlobHandler h = [](ManagerInterface*, std::span<const uint8_t>) { in TEST_F() argument 183 IpmiBlobHandler h = [](ManagerInterface*, std::span<const uint8_t>) { in TEST_F() argument 199 IpmiBlobHandler h = [](ManagerInterface*, std::span<const uint8_t>) { in TEST_F() argument 217 [payloadLen](ManagerInterface*, std::span<const uint8_t>) { in TEST_F() argument 243 [payloadLen](ManagerInterface*, std::span<const uint8_t>) { in TEST_F() argument
|
H A D | manager_mock.hpp | 15 class ManagerMock : public ManagerInterface
|
/openbmc/phosphor-certificate-manager/bmc-vmi-ca/ |
H A D | ca_certs_manager.hpp | 15 using ManagerInterface = sdbusplus::server::object_t< typedef 26 class CACertMgr : public internal::ManagerInterface 41 internal::ManagerInterface(bus, path), bus(bus), objectPath(path), in CACertMgr()
|
/openbmc/phosphor-certificate-manager/ |
H A D | certs_manager.hpp | 31 using ManagerInterface = sdbusplus::server::object_t< typedef 39 class Manager : public internal::ManagerInterface
|
H A D | certs_manager.cpp | 134 internal::ManagerInterface(bus, path), bus(bus), event(event), in Manager()
|
/openbmc/phosphor-power/phosphor-regulators/src/ |
H A D | manager.hpp | 40 phosphor::power::regulators::interface::ManagerInterface>;
|