Home
last modified time | relevance | path

Searched refs:StartBaseClient (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane/trans_lane/
H A Dlnn_trans_lane_test.cpp105 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
131 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
155 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
185 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
223 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
261 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
328 EXPECT_CALL(laneMock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
354 EXPECT_CALL(laneMock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
377 EXPECT_CALL(laneMock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
397 EXPECT_CALL(laneMock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
[all …]
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/tcp_direct/src/
H A Dclient_trans_tcp_direct_listener.c106 int32_t ret = StartBaseClient(DIRECT_CHANNEL_CLIENT, &listener); in TransTdcCreateListener()
131 int32_t ret = StartBaseClient(DIRECT_CHANNEL_CLIENT, &listener); in TransTdcCreateListenerWithoutAddTrigger()
/ohos5.0/foundation/communication/dsoftbus/core/connection/interface/
H A Dsoftbus_base_listener.h56 int32_t StartBaseClient(ListenerModule module, const SoftbusBaseListener *listener);
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/common/fuzztest/connectioncommon_fuzzer/
H A Dconnectioncommon_fuzzer.cpp71 StartBaseClient(module, &listener); in DoBaseListenerFuzz()
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/common/unittest/
H A Dsoftbus_conn_common_test.cpp256 EXPECT_EQ(SOFTBUS_INVALID_PARAM, StartBaseClient(static_cast<ListenerModule>(PROXY - 1), NULL));
258 StartBaseClient(static_cast<ListenerModule>(DIRECT_CHANNEL_SERVER_WIFI + 1), NULL));
277 EXPECT_EQ(SOFTBUS_OK, StartBaseClient(static_cast<ListenerModule>(i), listener));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane/include/
H A Dlnn_lane_deps_mock.h95 virtual int32_t StartBaseClient(ListenerModule module, const SoftbusBaseListener *listener) = 0;
160 …MOCK_METHOD2(StartBaseClient, int32_t (ListenerModule module, const SoftbusBaseListener *listener)…
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane/src/
H A Dlnn_lane_deps_mock.cpp363 int32_t StartBaseClient(ListenerModule module, const SoftbusBaseListener *listener) in StartBaseClient() function
365 return GetLaneDepsInterface()->StartBaseClient(module, listener); in StartBaseClient()
H A Dlnn_lane_test.cpp124 … EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(LaneDepsInterfaceMock::ActionOfStartBaseClient); in SetUpTestCase()
2237 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
2291 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
2378 EXPECT_CALL(mock, StartBaseClient).WillRepeatedly(Return(SOFTBUS_OK));
/ohos5.0/foundation/communication/dsoftbus/adapter/common/bus_center/network/
H A Dlnn_netlink_monitor.c205 if (StartBaseClient(NETLINK, &listener) != SOFTBUS_OK) { in LnnInitNetlinkMonitorImpl()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_reliability.c361 int32_t ret = StartBaseClient(LANE, &listener); in InitLaneReliability()
/ohos5.0/foundation/communication/dsoftbus/core/authentication/src/
H A Dauth_tcp_connection.c365 if (StartBaseClient(module, &listener) != SOFTBUS_OK) { in AuthTcpCreateListener()
/ohos5.0/foundation/communication/dsoftbus/core/connection/common/src/
H A Dsoftbus_base_listener.c324 int32_t StartBaseClient(ListenerModule module, const SoftbusBaseListener *listener) in StartBaseClient() function