Home
last modified time | relevance | path

Searched refs:IpmiException (Results 1 – 14 of 14) sorted by relevance

/openbmc/google-ipmi-sys/
H A Dhandler.cpp173 throw IpmiException(::ipmi::ccUnspecifiedError); in getRxPackets()
204 throw IpmiException(::ipmi::ccUnspecifiedError); in getCpldVersion()
217 throw IpmiException(::ipmi::ccUnspecifiedError); in getCpldVersion()
236 throw IpmiException(::ipmi::ccUnspecifiedError); in psuResetDelay()
244 throw IpmiException(::ipmi::ccUnspecifiedError); in psuResetDelay()
265 throw IpmiException(::ipmi::ccUnspecifiedError); in psuResetDelay()
531 throw IpmiException(::ipmi::ccParmOutOfRange); in accelOobDeviceName()
537 throw IpmiException(::ipmi::ccInvalidCommand); in accelOobDeviceName()
632 throw IpmiException(::ipmi::ccParmOutOfRange); in accelOobWrite()
720 throw IpmiException(::ipmi::ccParmOutOfRange); in accelSetVrSettings()
[all …]
H A Derrors.hpp29 class IpmiException : public std::exception class
32 explicit IpmiException(int ipmicc) : in IpmiException() function in google::ipmi::IpmiException
H A Dpsu.cpp50 catch (const IpmiException& e) in psuHardReset()
66 catch (const IpmiException& e) in psuHardResetOnShutdown()
H A Dbmc_mode.cpp39 catch (const IpmiException& e) in getBmcMode()
H A Dlinux_boot_done.cpp37 catch (const IpmiException& e) in linuxBootDone()
H A Dflash_size.cpp41 catch (const IpmiException& e) in getFlashSize()
H A Dhost_power_off.cpp50 catch (const IpmiException& e) in hostPowerOff()
H A Dmachine_name.cpp45 catch (const IpmiException& e) in getMachineName()
H A Dcpld.cpp74 catch (const IpmiException& e) in cpldVersion()
H A Dcable.cpp86 catch (const IpmiException& e) in cableCheck()
H A Dentity_name.cpp68 catch (const IpmiException& e) in getEntityName()
H A Dgoogle_accel_oob.cpp305 catch (const IpmiException& e) in accelGetVrSettings()
332 catch (const IpmiException& e) in accelSetVrSettings()
/openbmc/google-ipmi-sys/test/
H A Dhandler_unittest.cpp54 EXPECT_THROW(h.getRxPackets("eth0/../../"), IpmiException); in TEST()
103 EXPECT_THROW(h.getEntityName(0x03, 2), IpmiException); in TEST()
329 EXPECT_THROW(h.accelOobDeviceCount(), IpmiException); in TEST()
346 EXPECT_THROW(h.accelOobDeviceName(0), IpmiException); in TEST()
354 EXPECT_THROW(h.accelOobDeviceName(1), IpmiException); in TEST()
363 EXPECT_THROW(h.accelOobDeviceName(0), IpmiException); in TEST()
463 IpmiException); in TEST()
480 IpmiException); in TEST()
497 IpmiException); in TEST()
582 IpmiException); in TEST()
[all …]
H A Dmachine_unittest.cpp42 EXPECT_CALL(hMock, getMachineName()).WillOnce(Throw(IpmiException(5))); in TEST()