Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/manager/mock/
H A Dtrans_manager_mock.cpp105 int32_t TransCommonGetLocalConfig(int32_t channelType, int32_t businessType, uint32_t *len) in TransCommonGetLocalConfig() function
107 return GetTransManagerInterface()->TransCommonGetLocalConfig(channelType, businessType, len); in TransCommonGetLocalConfig()
H A Dtrans_manager_mock.h50 …virtual int32_t TransCommonGetLocalConfig(int32_t channelType, int32_t businessType, uint32_t *len…
69 MOCK_METHOD3(TransCommonGetLocalConfig, int32_t (int32_t, int32_t, uint32_t *));
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/common/include/
H A Dtrans_channel_common.h64 int32_t TransCommonGetLocalConfig(int32_t channelType, int32_t businessType, uint32_t *len);
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/
H A Dtrans_tcp_direct_message_test.cpp542 int32_t ret = TransCommonGetLocalConfig(channelType, bussinessType, &len);
557 int32_t ret = TransCommonGetLocalConfig(channelType, bussinessType, &len);
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/common/src/
H A Dtrans_channel_common.c122 int32_t TransCommonGetLocalConfig(int32_t channelType, int32_t businessType, uint32_t *len) in TransCommonGetLocalConfig() function
170 …(void)TransCommonGetLocalConfig(appInfo->channelType, appInfo->businessType, &appInfo->myData.data… in FillAppInfo()
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/manager/trans_channel_manager_test/
H A Dtrans_channel_manager_test.cpp716 EXPECT_CALL(mock, TransCommonGetLocalConfig).WillOnce(Return(SOFTBUS_OK));
778 EXPECT_CALL(mock, TransCommonGetLocalConfig).WillOnce(Return(SOFTBUS_GET_CONFIG_VAL_ERR));
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/common/
H A Dtrans_lane_common_test.cpp122 int32_t ret = TransCommonGetLocalConfig(channelType, businessType, nullptr);
127 ret = TransCommonGetLocalConfig(channelType, businessType, &len);
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/src/
H A Dtrans_channel_manager.c404 …if (TransCommonGetLocalConfig(appInfo->channelType, appInfo->businessType, &appInfo->myData.dataCo… in GetAuthAppInfo()