| /openbmc/phosphor-power/phosphor-regulators/src/ |
| H A D | error_logging.cpp | 52 logError(message, severity, additionalData, journal); in logConfigFileError() 58 logError("xyz.openbmc_project.Power.Error.DBus", severity, additionalData, in logDBusError() 78 logError("xyz.openbmc_project.Power.Error.I2C", severity, additionalData, in logI2CError() 85 logError("xyz.openbmc_project.Power.Error.Internal", severity, in logInternalError() 99 logError(message, severity, additionalData, journal); in logPhaseFault() 107 logError("xyz.openbmc_project.Power.Error.PMBus", severity, additionalData, in logPMBusError() 116 logError("xyz.openbmc_project.Power.Regulators.Error.WriteVerification", in logWriteVerificationError() 188 journal.logError(exception_utils::getMessages(e)); in createFFDCFiles() 208 void DBusErrorLogging::logError( in logError() function in phosphor::power::regulators::DBusErrorLogging 238 journal.logError(exception_utils::getMessages(e)); in logError() [all …]
|
| H A D | journal.hpp | 81 virtual void logError(const std::string& message) = 0; 88 virtual void logError(const std::vector<std::string>& messages) = 0; 142 virtual void logError(const std::string& message) override in logError() function in phosphor::power::regulators::SystemdJournal 148 virtual void logError(const std::vector<std::string>& messages) override in logError() function in phosphor::power::regulators::SystemdJournal 152 logError(message); in logError()
|
| H A D | presence_detection.cpp | 54 services.getJournal().logError(exception_utils::getMessages(e)); in execute() 55 services.getJournal().logError( in execute() 59 error_logging_utils::logError(std::current_exception(), in execute()
|
| H A D | sensor_monitoring.cpp | 70 services.getJournal().logError(exception_utils::getMessages(e)); in execute() 71 services.getJournal().logError( in execute() 77 error_logging_utils::logError(std::current_exception(), in execute()
|
| H A D | phase_fault_detection.cpp | 73 services.getJournal().logError(exception_utils::getMessages(e)); in execute() 74 services.getJournal().logError( in execute() 80 error_logging_utils::logError(std::current_exception(), in execute() 112 services.getJournal().logError( in checkForPhaseFault()
|
| H A D | configuration.cpp | 73 services.getJournal().logError(exception_utils::getMessages(e)); in execute() 74 services.getJournal().logError("Unable to configure " + deviceOrRailID); in execute() 77 error_logging_utils::logError(std::current_exception(), in execute()
|
| H A D | error_logging_utils.hpp | 40 void logError(std::exception_ptr eptr, Entry::Level severity, 63 void logError(std::exception_ptr eptr, Entry::Level severity,
|
| H A D | device.cpp | 79 services.getJournal().logError(exception_utils::getMessages(e)); in close() 80 services.getJournal().logError("Unable to close device " + id); in close() 83 error_logging_utils::logError(std::current_exception(), in close()
|
| H A D | error_logging_utils.cpp | 35 void logError(std::exception_ptr eptr, Entry::Level severity, in logError() function 40 logError(eptr, severity, services, history); in logError() 43 void logError(std::exception_ptr eptr, Entry::Level severity, in logError() function
|
| H A D | manager.cpp | 114 services.getJournal().logError("Unable to configure regulator devices: " in configure() 341 services.getJournal().logError(exception_utils::getMessages(e)); in loadConfigFile() 342 services.getJournal().logError("Unable to load configuration file"); in loadConfigFile()
|
| /openbmc/phosphor-power/phosphor-regulators/test/ |
| H A D | error_logging_utils_tests.cpp | 84 error_logging_utils::logError(eptr, Entry::Level::Error, services); in TEST() 97 error_logging_utils::logError(eptr, Entry::Level::Error, services, in TEST() 125 error_logging_utils::logError(eptr, Entry::Level::Critical, services, in TEST() 160 error_logging_utils::logError(eptr, Entry::Level::Warning, services, in TEST() 188 error_logging_utils::logError(eptr, Entry::Level::Error, services, in TEST() 192 error_logging_utils::logError(eptr, Entry::Level::Error, services, in TEST() 223 error_logging_utils::logError(eptr, Entry::Level::Error, services, in TEST() 227 error_logging_utils::logError(eptr, Entry::Level::Error, services, in TEST() 259 error_logging_utils::logError(eptr, Entry::Level::Warning, services, in TEST() 263 error_logging_utils::logError(eptr, Entry::Level::Warning, services, in TEST() [all …]
|
| H A D | phase_fault_detection_tests.cpp | 210 EXPECT_CALL(journal, logError(std::vector<std::string>{"Logic error"})) in TEST_F() 213 logError("Unable to detect phase faults in regulator vdd1")) in TEST_F() 217 logError("n phase fault detected in regulator vdd1: count=1")) in TEST_F() 221 logError("n phase fault detected in regulator vdd1: count=2")) in TEST_F() 225 logError("n+1 phase fault detected in regulator vdd1: count=1")) in TEST_F() 229 logError("n+1 phase fault detected in regulator vdd1: count=2")) in TEST_F() 298 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 328 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 350 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 400 logError("n phase fault detected in regulator vdd1: count=1")) in TEST_F() [all …]
|
| H A D | mock_journal.hpp | 51 MOCK_METHOD(void, logError, (const std::string& message), (override)); 52 MOCK_METHOD(void, logError, (const std::vector<std::string>& messages),
|
| H A D | device_tests.cpp | 294 EXPECT_CALL(journal, logError(std::vector<std::string>{"DBus Error"})) in TEST_F() 296 EXPECT_CALL(journal, logError("Unable to monitor sensors for rail vdd")) in TEST_F() 300 logError("n phase fault detected in regulator reg2: count=1")) in TEST_F() 304 logError("n phase fault detected in regulator reg2: count=2")) in TEST_F() 364 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 365 EXPECT_CALL(journal, logError(A<const std::vector<std::string>&>())) in TEST_F() 385 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 386 EXPECT_CALL(journal, logError(A<const std::vector<std::string>&>())) in TEST_F() 413 EXPECT_CALL(journal, logError("Unable to close device vdd_reg")) in TEST_F() 415 EXPECT_CALL(journal, logError(expectedErrMessagesException)).Times(1); in TEST_F() [all …]
|
| H A D | chassis_tests.cpp | 226 EXPECT_CALL(journal, logError(A<const std::vector<std::string>&>())) in TEST_F() 228 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(6); in TEST_F() 337 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 358 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 413 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST_F() 438 logError("n phase fault detected in regulator reg0: count=1")) in TEST_F() 442 logError("n phase fault detected in regulator reg0: count=2")) in TEST_F() 446 logError("n phase fault detected in regulator reg1: count=1")) in TEST_F() 450 logError("n phase fault detected in regulator reg1: count=2")) in TEST_F()
|
| H A D | system_tests.cpp | 180 EXPECT_CALL(journal, logError(A<const std::vector<std::string>&>())) in TEST() 182 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(6); in TEST() 228 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST() 250 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST() 277 logError("n phase fault detected in regulator reg0: count=1")) in TEST() 280 logError("n phase fault detected in regulator reg0: count=2")) in TEST() 283 logError("n phase fault detected in regulator reg1: count=1")) in TEST() 286 logError("n phase fault detected in regulator reg1: count=2")) in TEST()
|
| H A D | configuration_tests.cpp | 94 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST() 149 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST() 214 EXPECT_CALL(journal, logError(expectedErrMessagesException)).Times(1); in TEST() 215 EXPECT_CALL(journal, logError("Unable to configure vdd_reg")).Times(1); in TEST() 279 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST() 345 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(0); in TEST() 421 EXPECT_CALL(journal, logError(expectedErrMessagesException)).Times(1); in TEST() 422 EXPECT_CALL(journal, logError("Unable to configure vio2")).Times(1); in TEST()
|
| H A D | sensor_monitoring_tests.cpp | 166 EXPECT_CALL(journal, logError(A<const std::vector<std::string>&>())) in TEST() 168 EXPECT_CALL(journal, logError(A<const std::string&>())).Times(6); in TEST() 295 EXPECT_CALL(journal, logError(expectedErrMessagesException)) in TEST() 298 logError("Unable to monitor sensors for rail vdd")) in TEST()
|
| /openbmc/phosphor-power/phosphor-power-sequencer/src/ |
| H A D | services.hpp | 95 virtual void logError( 216 /** @copydoc Services::logError() */ in createPMBus() 217 virtual void logError( in createPMBus()
|
| /openbmc/phosphor-state-manager/ |
| H A D | systemd_target_signal.cpp | 53 void SystemdTargetLogging::logError(const std::string& errorLog, in logError() function in phosphor::state::manager::SystemdTargetLogging 138 logError(error, result, unit); in systemdUnitChange()
|
| H A D | systemd_target_signal.hpp | 80 void logError(const std::string& error, const std::string& result,
|
| /openbmc/phosphor-power/phosphor-power-sequencer/test/ |
| H A D | mock_services.hpp | 54 MOCK_METHOD(void, logError,
|
| /openbmc/phosphor-power/ |
| H A D | utility.cpp | 40 sdbusplus::bus_t& bus, bool logError) in getService() argument 55 if (logError) in getService()
|
| /openbmc/openbmc/meta-security/meta-tpm/recipes-tpm1/tpm-tools/files/ |
| H A D | tpm-tools-extendpcr.patch | 169 + logError(_("Unable to open input BIO\n")); 177 + logError(_("Unable to open input file: %s\n"), 194 + logError(_("This version of %s was compiled for a v1.1 TSS, which "
|
| H A D | 04-fix-FTBFS-clang.patch | 41 logError(_("Requiring size parameter.\n"));
|