Home
last modified time | relevance | path

Searched refs:AndAction (Results 1 – 5 of 5) sorted by relevance

/openbmc/phosphor-power/phosphor-regulators/src/actions/
H A Dand_action.hpp36 class AndAction : public Action class
40 AndAction() = delete;
41 AndAction(const AndAction&) = delete;
42 AndAction(AndAction&&) = delete;
43 AndAction& operator=(const AndAction&) = delete;
44 AndAction& operator=(AndAction&&) = delete;
45 virtual ~AndAction() = default;
52 explicit AndAction(std::vector<std::unique_ptr<Action>> actions) : in AndAction() function in phosphor::power::regulators::AndAction
/openbmc/phosphor-power/phosphor-regulators/test/actions/
H A Dand_action_tests.cpp43 AndAction andAction{std::move(actions)}; in TEST()
58 AndAction andAction{std::move(actions)}; in TEST()
84 AndAction andAction{std::move(actions)}; in TEST()
114 AndAction andAction{std::move(actions)}; in TEST()
143 AndAction andAction{std::move(actions)}; in TEST()
162 AndAction andAction{std::move(actions)}; in TEST()
173 AndAction andAction{std::move(actions)}; in TEST()
/openbmc/phosphor-power/phosphor-regulators/src/
H A Dconfig_file_parser.hpp141 std::unique_ptr<AndAction> parseAnd(const nlohmann::json& element);
H A Dconfig_file_parser.cpp181 std::unique_ptr<AndAction> parseAnd(const json& element) in parseAnd()
193 return std::make_unique<AndAction>(std::move(actions)); in parseAnd()
/openbmc/phosphor-power/phosphor-regulators/test/
H A Dconfig_file_parser_tests.cpp620 std::unique_ptr<AndAction> action = parseAnd(element); in TEST()