Lines Matching full:actions
49 * The configuration changes are applied by executing one or more actions.
52 * stored in the ActionEnvironment when the actions are executed. Actions that
71 * @param actions actions that configure the device/rail
74 std::vector<std::unique_ptr<Action>> actions) : in Configuration() argument
75 volts{volts}, actions{std::move(actions)} in Configuration()
79 * Executes the actions to configure the specified device.
93 * Executes the actions to configure the specified rail.
108 * Returns the actions that configure the device/rail.
110 * @return actions
114 return actions; in getActions()
129 * Executes the actions to configure a device or rail.
146 * Actions that configure the device/rail.
148 std::vector<std::unique_ptr<Action>> actions{}; member in phosphor::power::regulators::Configuration