Lines Matching full:physical
7 #include <xyz/openbmc_project/Led/Physical/server.hpp>
22 sdbusplus::xyz::openbmc_project::Led::server::Physical>;
24 /** @class Physical
25 * @brief Responsible for applying actions on a particular physical LED
27 class Physical : public PhysicalIfaces class
30 Physical() = delete;
31 ~Physical() override = default;
32 Physical(const Physical&) = delete;
33 Physical& operator=(const Physical&) = delete;
34 Physical(Physical&&) = delete;
35 Physical& operator=(Physical&&) = delete;
43 * @param[in] objPath - The Dbus path that hosts physical LED
48 Physical(sdbusplus::bus_t& bus, const std::string& objPath, in Physical() function in phosphor::led::Physical