Home
last modified time | relevance | path

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

/openbmc/phosphor-fan-presence/presence/
H A Derror_reporter.hpp28 class ErrorReporter class
31 ErrorReporter() = delete;
32 ~ErrorReporter() = default;
33 ErrorReporter(const ErrorReporter&) = delete;
34 ErrorReporter& operator=(const ErrorReporter&) = delete;
35 ErrorReporter(ErrorReporter&&) = delete;
36 ErrorReporter& operator=(ErrorReporter&&) = delete;
44 ErrorReporter(
H A Derror_reporter.cpp46 ErrorReporter::ErrorReporter( in ErrorReporter() function in phosphor::fan::presence::ErrorReporter
55 std::bind(&ErrorReporter::powerStateChanged, this, in ErrorReporter()
72 std::bind(std::mem_fn(&ErrorReporter::presenceChanged), this, in ErrorReporter()
80 std::bind(std::mem_fn(&ErrorReporter::fanMissingTimerExpired), in ErrorReporter()
97 void ErrorReporter::presenceChanged(sdbusplus::message_t& msg) in presenceChanged()
121 void ErrorReporter::checkFan(const std::string& fanPath) in checkFan()
148 void ErrorReporter::fanMissingTimerExpired(const std::string& fanPath) in fanMissingTimerExpired()
199 void ErrorReporter::powerStateChanged(bool powerState) in powerStateChanged()
H A Djson_parser.hpp106 std::unique_ptr<ErrorReporter> _reporter;
H A Djson_parser.cpp220 _reporter = std::make_unique<ErrorReporter>(_bus, _fans); in process()