Home
last modified time | relevance | path

Searched refs:InternalInterface (Results 1 – 4 of 4) sorted by relevance

/openbmc/phosphor-led-sysfs/interfaces/
H A Dinternal_interface.hpp28 class InternalInterface class
31 InternalInterface() = delete;
32 InternalInterface(const InternalInterface&) = delete;
33 InternalInterface& operator=(const InternalInterface&) = delete;
34 InternalInterface(InternalInterface&&) = delete;
35 InternalInterface& operator=(InternalInterface&&) = delete;
36 virtual ~InternalInterface() = default;
45 InternalInterface(sdbusplus::bus_t& bus, const char* path);
H A Dinternal_interface.cpp34 InternalInterface::InternalInterface(sdbusplus::bus_t& bus, const char* path) : in InternalInterface() function in phosphor::led::sysfs::interface::InternalInterface
38 std::string InternalInterface::getDbusName(const LedDescr& ledDescr) in getDbusName()
68 void InternalInterface::createLEDPath(const std::string& ledName) in createLEDPath()
102 void InternalInterface::addLED(const std::string& name) in addLED()
108 void InternalInterface::removeLED(const std::string& name) in removeLED()
113 int InternalInterface::addLedConfigure(sd_bus_message* msg, void* context, in addLedConfigure()
127 auto* self = static_cast<InternalInterface*>(context); in addLedConfigure()
141 int InternalInterface::removeLedConfigure(sd_bus_message* msg, void* context, in removeLedConfigure()
155 auto* self = static_cast<InternalInterface*>(context); in removeLedConfigure()
169 const std::array<sdbusplus::vtable::vtable_t, 4> InternalInterface::vtable = {
/openbmc/phosphor-led-sysfs/test/
H A Dtest_dbus_name.cpp29 std::string name = interface::InternalInterface::getDbusName(d); in TEST()
38 std::string name = interface::InternalInterface::getDbusName(d); in TEST()
47 std::string name = interface::InternalInterface::getDbusName(d); in TEST()
56 std::string name = interface::InternalInterface::getDbusName(d); in TEST()
/openbmc/phosphor-led-sysfs/
H A Dcontroller.cpp28 phosphor::led::sysfs::interface::InternalInterface internal(bus, ledPath); in main()