Home
last modified time | relevance | path

Searched refs:doesSupportCommand (Results 1 – 6 of 6) sorted by relevance

/openbmc/pldm/platform-mc/test/
H A Dterminus_manager_test.cpp480 EXPECT_EQ(true, termini[1]->doesSupportCommand(PLDM_BASE, PLDM_SET_TID)); in TEST_F()
481 EXPECT_EQ(true, termini[1]->doesSupportCommand(PLDM_BASE, PLDM_GET_TID)); in TEST_F()
483 termini[1]->doesSupportCommand(PLDM_BASE, PLDM_GET_PLDM_VERSION)); in TEST_F()
485 termini[1]->doesSupportCommand(PLDM_BASE, PLDM_GET_PLDM_TYPES)); in TEST_F()
487 EXPECT_EQ(true, termini[1]->doesSupportCommand(PLDM_BASE, in TEST_F()
489 EXPECT_EQ(false, termini[1]->doesSupportCommand(PLDM_BASE, in TEST_F()
493 EXPECT_EQ(true, termini[1]->doesSupportCommand(PLDM_PLATFORM, in TEST_F()
495 EXPECT_EQ(true, termini[1]->doesSupportCommand( in TEST_F()
497 EXPECT_EQ(true, termini[1]->doesSupportCommand( in TEST_F()
499 EXPECT_EQ(true, termini[1]->doesSupportCommand( in TEST_F()
[all …]
H A Devent_manager_test.cpp201 EXPECT_EQ(true, termini[tid]->doesSupportCommand(PLDM_PLATFORM, in TEST_F()
203 EXPECT_EQ(true, termini[tid]->doesSupportCommand( in TEST_F()
205 EXPECT_EQ(true, termini[tid]->doesSupportCommand( in TEST_F()
208 termini[tid]->doesSupportCommand(PLDM_PLATFORM, PLDM_GET_PDR)); in TEST_F()
209 EXPECT_EQ(true, termini[tid]->doesSupportCommand( in TEST_F()
H A Dplatform_manager_test.cpp191 EXPECT_EQ(true, terminus->doesSupportCommand(PLDM_PLATFORM, PLDM_GET_PDR)); in TEST_F()
/openbmc/pldm/platform-mc/
H A Dplatform_manager.cpp28 if (terminus->doesSupportCommand(PLDM_FRU, in initTerminus()
47 terminus->doesSupportCommand(PLDM_FRU, PLDM_GET_FRU_RECORD_TABLE)) in initTerminus()
59 if (terminus->doesSupportCommand(PLDM_PLATFORM, PLDM_GET_PDR)) in initTerminus()
83 if (!terminus->doesSupportCommand(PLDM_PLATFORM, in initTerminus()
136 if (!terminus->doesSupportCommand(PLDM_PLATFORM, in configEventReceiver()
164 if (!terminus->doesSupportCommand(PLDM_PLATFORM, PLDM_SET_EVENT_RECEIVER)) in configEventReceiver()
234 if (terminus->doesSupportCommand(PLDM_PLATFORM, in getPDRs()
H A Dterminus.hpp87 bool doesSupportCommand(uint8_t type, uint8_t command);
H A Dterminus.cpp29 bool Terminus::doesSupportCommand(uint8_t type, uint8_t command) in doesSupportCommand() function in pldm::platform_mc::Terminus