Home
last modified time | relevance | path

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

/openbmc/phosphor-power/phosphor-regulators/test/actions/
H A Dif_action_tests.cpp67 std::move(elseActions)}; in TEST()
132 elseActions.push_back(std::move(elseAction)); in TEST()
135 std::move(elseActions)}; in TEST()
161 elseActions.push_back(std::move(elseAction)); in TEST()
164 std::move(elseActions)}; in TEST()
190 elseActions.push_back(std::move(elseAction)); in TEST()
193 std::move(elseActions)}; in TEST()
219 elseActions.push_back(std::move(elseAction)); in TEST()
222 std::move(elseActions)}; in TEST()
298 std::move(elseActions)}; in TEST()
[all …]
/openbmc/phosphor-power/phosphor-regulators/src/actions/
H A Dif_action.hpp70 std::vector<std::unique_ptr<Action>> elseActions = in IfAction() argument
73 thenActions{std::move(thenActions)}, elseActions{std::move(elseActions)}
126 return elseActions; in getElseActions()
137 if (elseActions.size() > 0) in toString()
159 std::vector<std::unique_ptr<Action>> elseActions{}; member in phosphor::power::regulators::IfAction
H A Dif_action.cpp37 if (elseActions.size() > 0) in execute()
40 returnValue = action_utils::execute(elseActions, environment); in execute()
/openbmc/phosphor-power/phosphor-regulators/src/
H A Dconfig_file_parser.cpp711 std::vector<std::unique_ptr<Action>> elseActions{}; in parseIf() local
715 elseActions = parseActionArray(*elseIt); in parseIf()
724 std::move(elseActions)); in parseIf()