Home
last modified time | relevance | path

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

/openbmc/google-ipmi-sys/test/
H A Dbm_instance_unittest.cpp40 getBMInstanceProperty(request, &hMock)); in TEST()
49 EXPECT_CALL(hMock, getBMInstanceProperty(1)) in TEST()
52 getBMInstanceProperty(request, &hMock)); in TEST()
61 EXPECT_CALL(hMock, getBMInstanceProperty(2)) in TEST()
64 auto reply = getBMInstanceProperty(request, &hMock); in TEST()
H A Dhandler_mock.hpp74 MOCK_METHOD(std::string, getBMInstanceProperty, (uint8_t),
H A Dhandler_unittest.cpp651 EXPECT_THROW(h.getBMInstanceProperty(0x07), IpmiException); in TEST()
654 EXPECT_THROW(h.getBMInstanceProperty(0x00), IpmiException); in TEST()
/openbmc/google-ipmi-sys/
H A Dbm_instance.cpp44 Resp getBMInstanceProperty(std::span<const uint8_t> data, in getBMInstanceProperty() function
55 handler->getBMInstanceProperty(/*type=*/data[0]); in getBMInstanceProperty()
H A Dbm_instance.hpp31 Resp getBMInstanceProperty(std::span<const uint8_t> data,
H A Dipmi.cpp96 return getBMInstanceProperty(data, handler); in handleSysCommand()
H A Dhandler.hpp243 virtual std::string getBMInstanceProperty(uint8_t propertyType) const = 0;
H A Dhandler_impl.hpp81 std::string getBMInstanceProperty(uint8_t propertyType) const override;
H A Dhandler.cpp773 std::string Handler::getBMInstanceProperty(uint8_t propertyType) const in getBMInstanceProperty() function in google::ipmi::Handler