Searched refs:getMachineName (Results 1 – 8 of 8) sorted by relevance
/openbmc/google-ipmi-sys/test/ |
H A D | machine_unittest.cpp | 42 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 D | handler_mock.hpp | 52 MOCK_METHOD(std::string, getMachineName, (), (override));
|
/openbmc/google-ipmi-sys/ |
H A D | machine_name.cpp | 36 Resp getMachineName(std::span<const uint8_t>, HandlerInterface* handler) in getMachineName() function 43 machineName = handler->getMachineName(); in getMachineName()
|
H A D | machine_name.hpp | 36 Resp getMachineName(std::span<const uint8_t> data, HandlerInterface* handler);
|
H A D | ipmi.cpp | 73 return getMachineName(data, handler); in handleSysCommand()
|
H A D | handler.hpp | 119 virtual std::string getMachineName() = 0;
|
H A D | handler_impl.hpp | 62 std::string getMachineName() override;
|
H A D | handler.cpp | 332 std::string Handler::getMachineName() in getMachineName() function in google::ipmi::Handler
|