Home
last modified time | relevance | path

Searched refs:CheckActiveConnection (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/common/mock/src/
H A Dtrans_conn_mock.cpp86 bool CheckActiveConnection(const ConnectOption *option, bool needOccupy) in CheckActiveConnection() function
88 return GetConnectInterface()->CheckActiveConnection(option, needOccupy); in CheckActiveConnection()
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/common/mock/include/
H A Dtrans_conn_mock.h44 virtual bool CheckActiveConnection(const ConnectOption *option, bool needOccupy) = 0;
70 MOCK_METHOD2(CheckActiveConnection, bool (const ConnectOption *, bool));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/mock_common/include/
H A Dlnn_connection_mock.h42 virtual bool CheckActiveConnection(const ConnectOption *option, bool needOccupy) = 0;
60 MOCK_METHOD2(CheckActiveConnection, bool(const ConnectOption *, bool));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/mock_common/src/
H A Dlnn_connection_mock.cpp78 bool CheckActiveConnection(const ConnectOption *option, bool needOccupy) in CheckActiveConnection() function
80 return GetConnInterface()->CheckActiveConnection(option, needOccupy); in CheckActiveConnection()
/ohos5.0/foundation/communication/dsoftbus/core/connection/manager/
H A Dsoftbus_conn_manager.h99 bool (*CheckActiveConnection)(const ConnectOption *info, bool needOccupy); member
H A Dsoftbus_conn_manager.c586 bool CheckActiveConnection(const ConnectOption *info, bool needOccupy) in CheckActiveConnection() function
597 if (g_connManager[info->type]->CheckActiveConnection == NULL) { in CheckActiveConnection()
601 return g_connManager[info->type]->CheckActiveConnection(info, needOccupy); in CheckActiveConnection()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane_link/
H A Dlnn_lane_link_test.cpp410 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
463 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
511 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
826 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
882 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
938 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
1188 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
1241 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
1293 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
1346 EXPECT_CALL(linkMock, CheckActiveConnection).WillRepeatedly(Return(true));
[all …]
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane/include/
H A Dlnn_lane_deps_mock.h96 virtual bool CheckActiveConnection(const ConnectOption *option, bool needOccupy) = 0;
161 MOCK_METHOD2(CheckActiveConnection, bool (const ConnectOption *, bool));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane/src/
H A Dlnn_lane_deps_mock.cpp368 bool CheckActiveConnection(const ConnectOption *option, bool needOccupy) in CheckActiveConnection() function
370 return GetLaneDepsInterface()->CheckActiveConnection(option, needOccupy); in CheckActiveConnection()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/heartbeat/src/
H A Dlnn_heartbeat_utils.c105 ret = CheckActiveConnection(&option, false); in HbHasActiveBrConnection()
131 ret = CheckActiveConnection(&option, false); in HbHasActiveBleConnection()
/ohos5.0/foundation/communication/dsoftbus/core/connection/interface/
H A Dsoftbus_conn_interface.h404 bool CheckActiveConnection(const ConnectOption *option, bool needOccupy);
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/br/
H A Dconnection_br_test.cpp571 int32_t ret = CheckActiveConnection(&info, false);
589 ret = CheckActiveConnection(&info, false);
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dconnection_ble_switch_test.cpp701 bool isActive = CheckActiveConnection(&optionInfo, false);
H A Dconnection_ble_manager_test.cpp546 bool res = g_bleInterface->CheckActiveConnection(&option, false);
/ohos5.0/foundation/communication/dsoftbus/core/authentication/src/
H A Dauth_connection.c754 return CheckActiveConnection(&connOpt, true); in CheckActiveAuthConnection()
/ohos5.0/foundation/communication/dsoftbus/core/connection/tcp/src/
H A Dsoftbus_tcp_connect_manager.c754 g_tcpInterface.CheckActiveConnection = TcpCheckActiveConnection; in InitTcpInterface()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/test/heartbeat/
H A Dhb_fsm_test.cpp393 EXPECT_CALL(connMock, CheckActiveConnection).WillRepeatedly(Return(true));
/ohos5.0/foundation/communication/dsoftbus/core/connection/br/src/
H A Dsoftbus_conn_br_manager.c1859 .CheckActiveConnection = BrCheckActiveConnection, in ConnInitBr()
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_manager.c2350 .CheckActiveConnection = BleCheckActiveConnection, in ConnInitBle()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_link_p2p.c2222 return CheckActiveConnection(&connOpt, true); in CheckHasBrConnection()