Home
last modified time | relevance | path

Searched refs:StopBroadcasting (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/adapter/bluetooth/broadcast/
H A Dsoftbus_broadcast_mgr_test.cpp290 EXPECT_EQ(SOFTBUS_BC_MGR_NO_FUNC_REGISTERED, StopBroadcasting(bcId));
334 EXPECT_EQ(SOFTBUS_BC_MGR_FUNC_NULL, StopBroadcasting(bcId));
676 EXPECT_EQ(SOFTBUS_OK, StopBroadcasting(bcId));
713 EXPECT_EQ(SOFTBUS_OK, StopBroadcasting(bcId));
862 EXPECT_EQ(SOFTBUS_OK, StopBroadcasting(bcId));
884 EXPECT_EQ(SOFTBUS_BC_MGR_INVALID_BC_ID, StopBroadcasting(invalidId));
885 EXPECT_EQ(SOFTBUS_BC_MGR_INVALID_BC_ID, StopBroadcasting(BC_NUM_MAX));
887 EXPECT_EQ(SOFTBUS_BC_MGR_INVALID_BC_ID, StopBroadcasting(invalidId));
910 EXPECT_EQ(SOFTBUS_OK, StopBroadcasting(bcId));
H A Dsoftbus_ble_mock.cpp196 .StopBroadcasting = MockStopBroadcasting, in ActionOfSoftbusBleAdapterInit()
/ohos5.0/foundation/communication/dsoftbus/tests/core/discovery/ble/softbus_ble_mock/
H A Dble_mock.h50 virtual int32_t StopBroadcasting(int32_t bcId) = 0;
86 MOCK_METHOD(int32_t, StopBroadcasting, (int32_t bcId), (override));
H A Dble_mock.cpp79 int32_t StopBroadcasting(int32_t bcId) in StopBroadcasting() function
81 return BleMock::GetMock()->StopBroadcasting(bcId); in StopBroadcasting()
534 EXPECT_CALL(*this, StopBroadcasting).WillRepeatedly(BleMock::ActionOfStopBroadcasting); in SetupSuccessStub()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/include/
H A Dsoftbus_broadcast_adapter_interface.h77 int32_t (*StopBroadcasting)(int32_t advId); member
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/interface/
H A Dsoftbus_broadcast_manager.h192 int32_t StopBroadcasting(int32_t bcId);
/ohos5.0/foundation/communication/dsoftbus/core/broadcast/scheduler/src/
H A Dbroadcast_scheduler.c67 return StopBroadcasting(bcId); in SchedulerStopBroadcast()
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/broadcast/
H A Dsoftbus_ble_gatt_test.cpp567 int32_t ret = MockBluetooth::interface->StopBroadcasting(advld);
582 ret = MockBluetooth::interface->StopBroadcasting(GATT_ADV_MAX_NUM);
607 ret = MockBluetooth::interface->StopBroadcasting(advld);
632 ret = MockBluetooth::interface->StopBroadcasting(advld);
635 ret = MockBluetooth::interface->StopBroadcasting(advld);
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/manager/src/
H A Dsoftbus_broadcast_mgr.c128 (void)g_interface[g_interfaceId]->StopBroadcasting(bcManager->adapterBcId); in BcBtStateChanged()
797 (void)g_interface[g_interfaceId]->StopBroadcasting(g_bcManager[bcId].adapterBcId); in UnRegisterBroadcaster()
1428 int32_t ret = g_interface[g_interfaceId]->StopBroadcasting(g_bcManager[bcId].adapterBcId); in StartBroadcastingWaitSignal()
1445 DISC_CHECK_AND_RETURN_RET_LOGE(g_interface[g_interfaceId]->StopBroadcasting != NULL, in CheckInterface()
1511 int ret = StopBroadcasting(bcId); in UpdateBroadcasting()
1566 int32_t StopBroadcasting(int32_t bcId) in StopBroadcasting() function
1600 ret = g_interface[g_interfaceId]->StopBroadcasting(g_bcManager[bcId].adapterBcId); in StopBroadcasting()
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/fuzztest/softbusbroadcast_fuzzer/
H A Dsoftbusbroadcast_fuzzer.cpp251 StopBroadcasting(bcId); in StopBroadcastingFuzzTest()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/ble/src/
H A Dsoftbus_ble_gatt.c914 .StopBroadcasting = SoftbusStopAdv, in SoftbusBleAdapterInit()