Home
last modified time | relevance | path

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

/openbmc/phosphor-power/phosphor-regulators/test/actions/
H A Dif_action_tests.cpp44 std::vector<std::unique_ptr<Action>> thenActions{}; in TEST() local
45 thenActions.push_back(std::make_unique<MockAction>()); in TEST()
46 thenActions.push_back(std::make_unique<MockAction>()); in TEST()
48 IfAction ifAction{std::move(conditionAction), std::move(thenActions)}; in TEST()
59 std::vector<std::unique_ptr<Action>> thenActions{}; in TEST() local
60 thenActions.push_back(std::make_unique<MockAction>()); in TEST()
61 thenActions.push_back(std::make_unique<MockAction>()); in TEST()
66 IfAction ifAction{std::move(conditionAction), std::move(thenActions), in TEST()
90 std::vector<std::unique_ptr<Action>> thenActions{}; in TEST() local
98 thenActions.push_back(std::move(thenAction)); in TEST()
[all …]
/openbmc/phosphor-power/phosphor-regulators/src/actions/
H A Dif_action.hpp69 std::vector<std::unique_ptr<Action>> thenActions, in IfAction() argument
73 thenActions{std::move(thenActions)}, elseActions{std::move(elseActions)}
114 return thenActions; in getThenActions()
154 std::vector<std::unique_ptr<Action>> thenActions{}; member in phosphor::power::regulators::IfAction
H A Dif_action.cpp32 returnValue = action_utils::execute(thenActions, environment); in execute()
/openbmc/phosphor-power/phosphor-regulators/test/
H A Dphase_fault_detection_tests.cpp383 std::vector<std::unique_ptr<Action>> thenActions{}; in TEST_F() local
384 thenActions.push_back(std::move(logPhaseFaultAction)); in TEST_F()
386 std::move(thenActions)); in TEST_F()
438 std::vector<std::unique_ptr<Action>> thenActions{}; in TEST_F() local
439 thenActions.push_back(std::move(logPhaseFaultAction)); in TEST_F()
441 std::move(thenActions)); in TEST_F()
/openbmc/phosphor-power/phosphor-regulators/src/
H A Dconfig_file_parser.cpp706 std::vector<std::unique_ptr<Action>> thenActions = in parseIf() local
723 std::move(thenActions), in parseIf()