/foundation/communication/dsoftbus/tests/adapter/bluetooth/broadcast/ |
H A D | softbus_ble_mock.h | 29 virtual int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) = 0; 41 MOCK_METHOD(int32_t, SoftBusAddBtStateListener, (const SoftBusBtStateListener *listener), (override));
|
H A D | softbus_ble_mock.cpp | 43 EXPECT_CALL(*this, SoftBusAddBtStateListener).WillRepeatedly(ActionOfSoftBusAddBtStateListener); in ManagerMock() 72 int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function 74 return ManagerMock::GetMock()->SoftBusAddBtStateListener(listener); in SoftBusAddBtStateListener()
|
/foundation/communication/dsoftbus/tests/core/bus_center/mock_common/src/ |
H A D | network_mock.cpp | 86 int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function 88 return GetNetworkInterface()->SoftBusAddBtStateListener(listener); in SoftBusAddBtStateListener()
|
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/common/ |
H A D | softbus_adapter_bt_common_virtual.c | 20 int SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function
|
H A D | softbus_adapter_bt_common.c | 200 int SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function
|
/foundation/communication/dsoftbus/tests/core/connection/br/ |
H A D | br_mock.cpp | 77 int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener)
in SoftBusAddBtStateListener() function 79 return GetConnectionBrInterface()->SoftBusAddBtStateListener(listener);
in SoftBusAddBtStateListener()
|
H A D | br_mock.h | 45 virtual int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) = 0;
75 MOCK_METHOD1(SoftBusAddBtStateListener, int(const SoftBusBtStateListener *));
|
H A D | br_connection_test.cpp | 188 EXPECT_CALL(brMock, SoftBusAddBtStateListener).WillOnce(Return(SOFTBUS_OK));
in ConnInit()
|
/foundation/communication/dsoftbus/tests/core/bus_center/mock_common/include/ |
H A D | network_mock.h | 57 virtual int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) = 0; 76 MOCK_METHOD1(SoftBusAddBtStateListener, int(const SoftBusBtStateListener *));
|
/foundation/communication/dsoftbus/tests/adapter/unittest/ |
H A D | softbus_network_test.cpp | 117 ON_CALL(networkMock, SoftBusAddBtStateListener).WillByDefault(Return(TEST_LISTENER_ID)); in HWTEST_F() 139 EXPECT_CALL(networkMock, SoftBusAddBtStateListener).WillRepeatedly(Return(TEST_LISTENER_ID2)); in HWTEST_F()
|
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/include/ |
H A D | softbus_adapter_bt_common.h | 128 int SoftBusAddBtStateListener(const SoftBusBtStateListener *listener);
|
/foundation/communication/dsoftbus/adapter/common/bus_center/network/ |
H A D | lnn_bt_monitor.c | 112 g_btStateListenerId = SoftBusAddBtStateListener(&g_btStateListener); in LnnInitBtStateMonitorImpl()
|
/foundation/communication/dsoftbus/tests/core/discovery/ble/softbus_ble_mock/ |
H A D | disc_ble_test.cpp | 156 EXPECT_CALL(bleMock, SoftBusAddBtStateListener).WillRepeatedly(Return(SOFTBUS_DISCOVER_TEST_CASE_ERRCODE)); in HWTEST_F() 164 EXPECT_CALL(bleMock, SoftBusAddBtStateListener).WillRepeatedly(Return(SOFTBUS_OK)); in HWTEST_F() 173 EXPECT_CALL(bleMock, SoftBusAddBtStateListener).WillRepeatedly(Return(SOFTBUS_OK)); in HWTEST_F()
|
H A D | ble_mock.h | 32 virtual int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) = 0; 70 MOCK_METHOD(int32_t, SoftBusAddBtStateListener, (const SoftBusBtStateListener *listener), (override));
|
H A D | ble_mock.cpp | 30 int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function 32 return BleMock::GetMock()->SoftBusAddBtStateListener(listener); in SoftBusAddBtStateListener() 532 EXPECT_CALL(*this, SoftBusAddBtStateListener(NotNull())).WillRepeatedly(BleMock::ActionOfAddBtStateListener); in SetupSuccessStub()
|
/foundation/communication/dsoftbus/tests/adapter/broadcast/ |
H A D | bluetooth_mock.cpp | 294 int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function 296 return MockBluetooth::GetMocker()->SoftBusAddBtStateListener(listener); in SoftBusAddBtStateListener()
|
H A D | bluetooth_mock.h | 90 virtual int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) = 0; 160 MOCK_METHOD(int32_t, SoftBusAddBtStateListener, (const SoftBusBtStateListener *listener), (override));
|
/foundation/communication/dsoftbus/tests/adapter/bluetooth/ |
H A D | softbus_adapter_bt_common_test.cpp | 117 auto listenerId = SoftBusAddBtStateListener(GetMockBtStateListener()); in PrepareBtStateListener() 119 return testing::AssertionFailure() << "SoftBusAddBtStateListener failed"; in PrepareBtStateListener()
|
/foundation/communication/dsoftbus/tests/core/connection/ble/ |
H A D | connection_ble_client_test.cpp | 78 int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function
|
H A D | connection_ble_manager_test.cpp | 100 int32_t SoftBusAddBtStateListener(const SoftBusBtStateListener *listener) in SoftBusAddBtStateListener() function
|
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/ble/src/ |
H A D | softbus_ble_gatt.c | 930 int32_t ret = SoftBusAddBtStateListener(&g_softbusBcAdapterBtStateListener); in SoftbusBleAdapterInit()
|
/foundation/communication/dsoftbus/core/connection/br/src/ |
H A D | softbus_conn_br_manager.c | 1786 int32_t listenerId = SoftBusAddBtStateListener(&listener); in InitBrManager()
|
/foundation/communication/dsoftbus/core/discovery/ble/softbus_ble/src/ |
H A D | disc_ble.c | 1884 g_bleListener.stateListenerId = SoftBusAddBtStateListener(&g_stateChangedListener); in InitBleListener()
|
/foundation/communication/dsoftbus/core/connection/ble/src/ |
H A D | softbus_conn_ble_manager.c | 2299 int32_t listenerId = SoftBusAddBtStateListener(&btStateListener); in InitBleManager()
|
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/manager/src/ |
H A D | softbus_broadcast_mgr.c | 200 ret = SoftBusAddBtStateListener(&g_softbusBcBtStateLister); in InitBroadcastMgr()
|