Home
last modified time | relevance | path

Searched refs:TransOpenDirectChannel (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/common/mock/
H A Dtrans_lane_common_test_mock.cpp89 int32_t TransOpenDirectChannel(AppInfo *appInfo, const ConnectOption *connInfo, int32_t *channelId) in TransOpenDirectChannel() function
91 return GetTransLaneCommonTestInterface()->TransOpenDirectChannel(appInfo, connInfo, channelId); in TransOpenDirectChannel()
H A Dtrans_lane_common_test_mock.h45 …virtual int32_t TransOpenDirectChannel(AppInfo *appInfo, const ConnectOption *connInfo, int32_t *c…
63 …MOCK_METHOD3(TransOpenDirectChannel, int32_t (AppInfo *appInfo, const ConnectOption *connInfo, int…
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/include/
H A Dtrans_tcp_direct_manager.h60 int32_t TransOpenDirectChannel(AppInfo *appInfo, const ConnectOption *connInfo, int32_t *channelId);
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/
H A Dtrans_server_tcp_direct_test.cpp639 int32_t ret = TransOpenDirectChannel(NULL, &connInfo, &fd);
642 ret = TransOpenDirectChannel(&appInfo, NULL, &fd);
645 ret = TransOpenDirectChannel(&appInfo, &connInfo, NULL);
648 ret = TransOpenDirectChannel(&appInfo, &connInfo, &fd);
H A Dtrans_core_tcp_direct_test.cpp229 ret = TransOpenDirectChannel(appInfo, &connOpt, &channelId);
232 ret = TransOpenDirectChannel(NULL, &connOpt, &channelId);
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/src/
H A Dtrans_tcp_direct_manager.c281 int32_t TransOpenDirectChannel(AppInfo *appInfo, const ConnectOption *connInfo, int32_t *channelId) in TransOpenDirectChannel() function
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/common/
H A Dtrans_lane_common_test.cpp612 EXPECT_CALL(TransLaneCommonMock, TransOpenDirectChannel).WillOnce(Return(SOFTBUS_INVALID_NUM));
617 EXPECT_CALL(TransLaneCommonMock, TransOpenDirectChannel).WillOnce(Return(SOFTBUS_OK));
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/common/src/
H A Dtrans_channel_common.c363 ret = TransOpenDirectChannel(appInfo, connOpt, channelId); in TransOpenChannelProc()