/openbmc/phosphor-power/phosphor-regulators/src/actions/ |
H A D | action_error.hpp | 35 class ActionError : public std::exception class 39 ActionError() = delete; 40 ActionError(const ActionError&) = default; 41 ActionError(ActionError&&) = default; 42 ActionError& operator=(const ActionError&) = default; 43 ActionError& operator=(ActionError&&) = default; 44 virtual ~ActionError() = default; 52 explicit ActionError(const Action& action, const std::string& error = "") : in ActionError() function in phosphor::power::regulators::ActionError
|
H A D | pmbus_write_vout_command_action.cpp | 61 std::throw_with_nested(ActionError(*this)); in execute() 65 std::throw_with_nested(ActionError(*this)); in execute() 69 std::throw_with_nested(ActionError(*this)); in execute() 142 throw ActionError(*this, "No volts value defined"); in getVoltsValue()
|
H A D | pmbus_read_sensor_action.cpp | 64 std::throw_with_nested(ActionError(*this)); in execute() 68 std::throw_with_nested(ActionError(*this)); in execute() 72 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | compare_presence_action.cpp | 44 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | i2c_compare_byte_action.cpp | 49 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | i2c_write_bit_action.cpp | 57 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | i2c_compare_bit_action.cpp | 49 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | i2c_write_byte_action.cpp | 56 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | compare_vpd_action.cpp | 43 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | i2c_compare_bytes_action.cpp | 55 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | i2c_write_bytes_action.cpp | 67 std::throw_with_nested(ActionError(*this)); in execute()
|
H A D | i2c_capture_bytes_action.cpp | 49 std::throw_with_nested(ActionError(*this)); in execute()
|
/openbmc/phosphor-power/phosphor-regulators/test/actions/ |
H A D | action_error_tests.cpp | 28 ActionError error{action}; in TEST() 35 ActionError error{action, "Infinite loop"}; in TEST() 44 ActionError error{action, "Invalid rule ID"}; in TEST()
|
H A D | pmbus_write_vout_command_action_tests.cpp | 213 catch (const ActionError& e) in TEST() 285 catch (const ActionError& e) in TEST() 345 catch (const ActionError& e) in TEST() 411 catch (const ActionError& e) in TEST() 476 catch (const ActionError& e) in TEST() 540 catch (const ActionError& e) in TEST()
|
H A D | i2c_write_bit_action_tests.cpp | 208 catch (const ActionError& e) in TEST() 268 catch (const ActionError& e) in TEST()
|
H A D | i2c_write_byte_action_tests.cpp | 180 catch (const ActionError& e) in TEST() 234 catch (const ActionError& e) in TEST()
|
H A D | pmbus_read_sensor_action_tests.cpp | 285 catch (const ActionError& e) in TEST() 349 catch (const ActionError& e) in TEST() 408 catch (const ActionError& e) in TEST() 479 catch (const ActionError& e) in TEST()
|
H A D | compare_presence_action_tests.cpp | 176 catch (const ActionError& e) in TEST()
|
H A D | i2c_compare_bit_action_tests.cpp | 197 catch (const ActionError& e) in TEST()
|
H A D | i2c_write_bytes_action_tests.cpp | 330 catch (const ActionError& e) in TEST() 391 catch (const ActionError& e) in TEST()
|
H A D | compare_vpd_action_tests.cpp | 159 catch (const ActionError& e) in TEST()
|
H A D | i2c_compare_byte_action_tests.cpp | 231 catch (const ActionError& e) in TEST()
|
H A D | i2c_capture_bytes_action_tests.cpp | 237 catch (const ActionError& e) in TEST()
|
H A D | i2c_compare_bytes_action_tests.cpp | 373 catch (const ActionError& e) in TEST()
|