Home
last modified time | relevance | path

Searched refs:accelOobDeviceName (Results 1 – 9 of 9) sorted by relevance

/openbmc/google-ipmi-sys/
H A Dgoogle_accel_oob.hpp32 Resp accelOobDeviceName(std::span<const uint8_t> data,
H A Dipmi.cpp82 return accelOobDeviceName(data, handler); in handleSysCommand()
H A Dhandler.hpp168 virtual std::string accelOobDeviceName(size_t index) const = 0;
H A Dgoogle_accel_oob.cpp81 Resp accelOobDeviceName(std::span<const uint8_t> data, in accelOobDeviceName() function
113 std::string name = handler->accelOobDeviceName(req->index); in accelOobDeviceName()
H A Dhandler_impl.hpp71 std::string accelOobDeviceName(size_t index) const override;
H A Dhandler.cpp506 std::string Handler::accelOobDeviceName(size_t index) const in accelOobDeviceName() function in google::ipmi::Handler
/openbmc/google-ipmi-sys/test/
H A Dhandler_mock.hpp60 MOCK_METHOD(std::string, accelOobDeviceName, (size_t), (const, override));
H A Dhandler_unittest.cpp338 EXPECT_EQ(std::string("test/path"), h.accelOobDeviceName(0)); in TEST()
347 EXPECT_THROW(h.accelOobDeviceName(0), IpmiException); in TEST()
355 EXPECT_THROW(h.accelOobDeviceName(1), IpmiException); in TEST()
364 EXPECT_THROW(h.accelOobDeviceName(0), IpmiException); in TEST()
H A Dgoogle_accel_oob_unittest.cpp83 EXPECT_CALL(h, accelOobDeviceName(kTestDeviceIndex)) in TEST()
87 Resp r = accelOobDeviceName( in TEST()