Home
last modified time | relevance | path

Searched refs:doesSupportType (Results 1 – 5 of 5) sorted by relevance

/openbmc/pldm/platform-mc/test/
H A Dterminus_test.cpp14 EXPECT_EQ(true, t1.doesSupportType(PLDM_BASE)); in TEST()
15 EXPECT_EQ(false, t1.doesSupportType(PLDM_PLATFORM)); in TEST()
16 EXPECT_EQ(true, t2.doesSupportType(PLDM_BASE)); in TEST()
17 EXPECT_EQ(true, t2.doesSupportType(PLDM_PLATFORM)); in TEST()
H A Dterminus_manager_test.cpp291 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_BASE)); in TEST_F()
292 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_PLATFORM)); in TEST_F()
293 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_BIOS)); in TEST_F()
294 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_FRU)); in TEST_F()
295 EXPECT_EQ(false, termini[1]->doesSupportType(PLDM_FWUP)); in TEST_F()
296 EXPECT_EQ(false, termini[1]->doesSupportType(PLDM_OEM)); in TEST_F()
477 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_BASE)); in TEST_F()
478 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_PLATFORM)); in TEST_F()
479 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_BIOS)); in TEST_F()
480 EXPECT_EQ(true, termini[1]->doesSupportType(PLDM_FRU)); in TEST_F()
/openbmc/pldm/platform-mc/
H A Dterminus.hpp79 bool doesSupportType(uint8_t type);
H A Dterminus.cpp22 bool Terminus::doesSupportType(uint8_t type) in doesSupportType() function in pldm::platform_mc::Terminus
29 if (!doesSupportType(type)) in doesSupportCommand()
H A Dterminus_manager.cpp350 if (!termini[tid]->doesSupportType(type)) in initMctpTerminus()