Home
last modified time | relevance | path

Searched full:actions (Results 1 – 25 of 1375) sorted by relevance

12345678910>>...55

/openbmc/linux/tools/testing/selftests/tc-testing/tc-tests/actions/
Dskbedit.json
Dgact.json
Dpolice.json
Dskbmod.json
Dmpls.json
Dvlan.json
Dsample.json
Dpedit.json
Dmirred.json
Dcsum.json
Dife.json
Dnat.json
Dsimple.json
Dconnmark.json
Dtunnel_key.json
Dct.json
/openbmc/phosphor-power/phosphor-regulators/test/
H A Dmeson.build3 'actions',
29 'actions/action_environment_tests.cpp',
30 'actions/action_error_tests.cpp',
31 'actions/action_utils_tests.cpp',
32 'actions/and_action_tests.cpp',
33 'actions/compare_presence_action_tests.cpp',
34 'actions/compare_vpd_action_tests.cpp',
35 'actions/i2c_action_tests.cpp',
36 'actions/i2c_capture_bytes_action_tests.cpp',
37 'actions/i2c_compare_bit_action_tests.cpp',
[all …]
H A Dvalidate-regulators-config_tests.cpp50 "actions": [
61 "actions": [
75 "actions": [
87 "actions": [
274 configFile["rules"][0]["actions"][0]["comments"][0] = in TEST()
290 configFile["rules"][0]["actions"].push_back(andAction); in TEST()
296 configFile["rules"][0]["actions"][1]["compare_presence"]["fru"] = in TEST()
298 configFile["rules"][0]["actions"][1]["compare_presence"]["value"] = in TEST()
305 configFile["rules"][0]["actions"][1]["compare_vpd"]["fru"] = in TEST()
307 configFile["rules"][0]["actions"][1]["compare_vpd"]["keyword"] = "CCIN"; in TEST()
[all …]
/openbmc/phosphor-power/phosphor-regulators/test/actions/
H A Dand_action_tests.cpp39 std::vector<std::unique_ptr<Action>> actions{}; in TEST() local
40 actions.push_back(std::make_unique<MockAction>()); in TEST()
41 actions.push_back(std::make_unique<MockAction>()); in TEST()
43 AndAction andAction{std::move(actions)}; in TEST()
54 // Test where empty vector of actions is specified in TEST()
57 std::vector<std::unique_ptr<Action>> actions{}; in TEST() local
58 AndAction andAction{std::move(actions)}; in TEST()
69 std::vector<std::unique_ptr<Action>> actions{}; in TEST() local
77 actions.push_back(std::move(action)); in TEST()
82 actions.push_back(std::move(action)); in TEST()
[all …]
H A Dor_action_tests.cpp39 std::vector<std::unique_ptr<Action>> actions{}; in TEST() local
40 actions.push_back(std::make_unique<MockAction>()); in TEST()
41 actions.push_back(std::make_unique<MockAction>()); in TEST()
43 OrAction orAction{std::move(actions)}; in TEST()
55 // Test where empty vector of actions is specified in TEST()
58 std::vector<std::unique_ptr<Action>> actions{}; in TEST() local
59 OrAction orAction{std::move(actions)}; in TEST()
70 std::vector<std::unique_ptr<Action>> actions{}; in TEST() local
78 actions.push_back(std::move(action)); in TEST()
83 actions.push_back(std::move(action)); in TEST()
[all …]
/openbmc/linux/arch/arm/boot/dts/actions/
Dowl-s500.dtsi
/openbmc/phosphor-fan-presence/control/
H A Dmeson.build16 include_dirs += ['./json', './json/actions', './json/triggers']
25 'json/actions/count_state_floor.cpp',
26 'json/actions/count_state_target.cpp',
27 'json/actions/default_floor.cpp',
28 'json/actions/get_managed_objects.cpp',
29 'json/actions/mapped_floor.cpp',
30 'json/actions/missing_owner_target.cpp',
31 'json/actions/net_target_decrease.cpp',
32 'json/actions/net_target_increase.cpp',
33 'json/actions/override_fan_target.cpp',
[all …]
/openbmc/phosphor-power/phosphor-regulators/src/
H A Dmeson.build4 'actions',
28 'actions/compare_presence_action.cpp',
29 'actions/compare_vpd_action.cpp',
30 'actions/if_action.cpp',
31 'actions/i2c_capture_bytes_action.cpp',
32 'actions/i2c_compare_bit_action.cpp',
33 'actions/i2c_compare_byte_action.cpp',
34 'actions/i2c_compare_bytes_action.cpp',
35 'actions/i2c_write_bit_action.cpp',
36 'actions/i2c_write_byte_action.cpp',
[all …]
/openbmc/phosphor-power/phosphor-regulators/src/actions/
H A Dor_action.hpp32 * Executes a sequence of actions and tests whether any of them returned true.
50 * @param actions actions to execute
52 explicit OrAction(std::vector<std::unique_ptr<Action>> actions) : in OrAction() argument
53 actions{std::move(actions)} in OrAction()
57 * Executes the actions specified in the constructor.
59 * Returns true if any of the actions returned true, otherwise returns
62 * Note: All of the actions will be executed even if an action before the
63 * end returns true. This ensures that actions with beneficial side-effects
71 * @return true if any actions returned true, otherwise returns false
76 for (std::unique_ptr<Action>& action : actions) in execute()
[all …]
H A Dand_action.hpp32 * Executes a sequence of actions and tests whether all of them returned true.
50 * @param actions actions to execute
52 explicit AndAction(std::vector<std::unique_ptr<Action>> actions) : in AndAction() argument
53 actions{std::move(actions)} in AndAction()
57 * Executes the actions specified in the constructor.
59 * Returns true if all of the actions returned true, otherwise returns
62 * Note: All of the actions will be executed even if an action before the
63 * end returns false. This ensures that actions with beneficial
71 * @return true if all actions returned true, otherwise returns false
76 for (std::unique_ptr<Action>& action : actions) in execute()
[all …]

12345678910>>...55