Lines Matching +full:d +full:- +full:bus
3 #include <sdbusplus/bus.hpp>
28 * D-Bus interface
35 * @param[in] bus - Bus to attach to
36 * @param[in] objPath - D-Bus object path
38 ActivationProgress(sdbusplus::bus_t& bus, const std::string& objPath) : in ActivationProgress() argument
39 ActivationProgressIntf(bus, objPath.c_str(), in ActivationProgress()
48 * Concrete implementation of xyz.openbmc_project.Object.Delete D-Bus interface
55 * @param[in] bus - Bus to attach to
56 * @param[in] objPath - D-Bus object path
57 * @param[in] updateManager - Reference to FW update manager
59 Delete(sdbusplus::bus_t& bus, const std::string& objPath, in Delete() argument
61 DeleteIntf(bus, objPath.c_str(), action::emit_interface_added), in Delete()
65 /** @brief Delete the Activation D-Bus object for the FW update package */
74 * Concrete implementation of xyz.openbmc_project.Object.Activation D-Bus
82 * @param[in] bus - Bus to attach to
83 * @param[in] objPath - D-Bus object path
84 * @param[in] updateManager - Reference to FW update manager
86 Activation(sdbusplus::bus_t& bus, std::string objPath, in Activation() argument
88 ActivationIntf(bus, objPath.c_str(), in Activation()
90 bus(bus), objPath(objPath), updateManager(updateManager) in Activation()
93 deleteImpl = std::make_unique<Delete>(bus, objPath, updateManager); in Activation()
123 sdbusplus::bus_t& bus; member in pldm::fw_update::Activation