Home
last modified time | relevance | path

Searched refs:getMachineName (Results 1 – 8 of 8) sorted by relevance

/openbmc/google-ipmi-sys/test/
H A Dmachine_unittest.cpp42 EXPECT_CALL(hMock, getMachineName()).WillOnce(Throw(IpmiException(5))); in TEST()
44 EXPECT_EQ(::ipmi::response(5), getMachineName(request, &hMock)); in TEST()
53 EXPECT_CALL(hMock, getMachineName()).WillOnce(Return(ret)); in TEST()
55 auto reply = getMachineName(request, &hMock); in TEST()
H A Dhandler_mock.hpp52 MOCK_METHOD(std::string, getMachineName, (), (override));
/openbmc/google-ipmi-sys/
H A Dmachine_name.cpp36 Resp getMachineName(std::span<const uint8_t>, HandlerInterface* handler) in getMachineName() function
43 machineName = handler->getMachineName(); in getMachineName()
H A Dmachine_name.hpp36 Resp getMachineName(std::span<const uint8_t> data, HandlerInterface* handler);
H A Dipmi.cpp73 return getMachineName(data, handler); in handleSysCommand()
H A Dhandler.hpp119 virtual std::string getMachineName() = 0;
H A Dhandler_impl.hpp62 std::string getMachineName() override;
H A Dhandler.cpp332 std::string Handler::getMachineName() in getMachineName() function in google::ipmi::Handler