Home
last modified time | relevance | path

Searched refs:LnnCheckSupportedHbType (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/test/heartbeat/
H A Dhb_utils_test.cpp148 ret = LnnCheckSupportedHbType(nullptr, nullptr);
150 ret = LnnCheckSupportedHbType(&srcType, nullptr);
152 ret = LnnCheckSupportedHbType(&srcType, &dstType);
H A Dhb_strategy_test.cpp253 ON_CALL(hbMock, LnnCheckSupportedHbType).WillByDefault(Return(true));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/test/mock/src/
H A Dhb_fsm_strategy_mock.cpp58 bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType) in LnnCheckSupportedHbType() function
60 return HeartBeatFSMStrategyInterfaceInstance()->LnnCheckSupportedHbType(srcType, dstType); in LnnCheckSupportedHbType()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/test/mock/include/
H A Dhb_fsm_strategy_mock.h40 virtual bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType) = 0;
82 MOCK_METHOD2(LnnCheckSupportedHbType, bool(LnnHeartbeatType *, LnnHeartbeatType *));
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/heartbeat/include/
H A Dlnn_heartbeat_utils.h155 bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType);
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/heartbeat/src/
H A Dlnn_heartbeat_utils.c236 bool LnnCheckSupportedHbType(LnnHeartbeatType *srcType, LnnHeartbeatType *dstType) in LnnCheckSupportedHbType() function
H A Dlnn_heartbeat_strategy.c835 if (!LnnCheckSupportedHbType(&hbType, &g_hbStrategyMgr[strategyType].supportType)) { in LnnGetHbStrategyManager()