Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/adapter/bluetooth/broadcast/
H A Dsoftbus_broadcast_mgr_test.cpp289 EXPECT_EQ(SOFTBUS_BC_MGR_NO_FUNC_REGISTERED, SetBroadcastingData(bcId, &packet));
333 EXPECT_EQ(SOFTBUS_BC_MGR_FUNC_NULL, SetBroadcastingData(bcId, &packet));
796 EXPECT_EQ(SOFTBUS_INVALID_PARAM, SetBroadcastingData(invalidId, nullptr));
797 EXPECT_EQ(SOFTBUS_BC_MGR_INVALID_BC_ID, SetBroadcastingData(invalidId, &packet));
798 EXPECT_EQ(SOFTBUS_BC_MGR_INVALID_BC_ID, SetBroadcastingData(BC_NUM_MAX, &packet));
800 EXPECT_EQ(SOFTBUS_BC_MGR_INVALID_BC_ID, SetBroadcastingData(invalidId, &packet));
825 EXPECT_EQ(SOFTBUS_BC_MGR_NOT_BROADCASTING, SetBroadcastingData(bcId, &packet));
861 EXPECT_EQ(SOFTBUS_OK, SetBroadcastingData(bcId, &packet));
H A Dsoftbus_ble_mock.cpp197 .SetBroadcastingData = MockSetBroadcastingData, in ActionOfSoftbusBleAdapterInit()
/ohos5.0/foundation/communication/dsoftbus/tests/core/discovery/ble/softbus_ble_mock/
H A Dble_mock.h53 virtual int32_t SetBroadcastingData(int32_t bcId, const BroadcastPacket *packet) = 0;
87 …MOCK_METHOD(int32_t, SetBroadcastingData, (int32_t bcId, const BroadcastPacket *packet), (override…
H A Dble_mock.cpp94 int32_t SetBroadcastingData(int32_t bcId, const BroadcastPacket *packet) in SetBroadcastingData() function
96 return BleMock::GetMock()->SetBroadcastingData(bcId, packet); in SetBroadcastingData()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/include/
H A Dsoftbus_broadcast_adapter_interface.h78 int32_t (*SetBroadcastingData)(int32_t advId, const SoftbusBroadcastData *data); member
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/interface/
H A Dsoftbus_broadcast_manager.h180 int32_t SetBroadcastingData(int32_t bcId, const BroadcastPacket *packet);
/ohos5.0/foundation/communication/dsoftbus/core/broadcast/scheduler/src/
H A Dbroadcast_scheduler.c62 return SetBroadcastingData(bcId, packet); in SchedulerSetBroadcastData()
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/broadcast/
H A Dsoftbus_ble_gatt_test.cpp651 int32_t ret = MockBluetooth::interface->SetBroadcastingData(advld, nullptr);
670 int32_t ret = MockBluetooth::interface->SetBroadcastingData(advld, &data);
691 ret = MockBluetooth::interface->SetBroadcastingData(GATT_ADV_MAX_NUM, &data);
721 ret = MockBluetooth::interface->SetBroadcastingData(advld, &data);
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/fuzztest/softbusbroadcast_fuzzer/
H A Dsoftbusbroadcast_fuzzer.cpp245 SetBroadcastingData(bcId, &packet); in SetBroadcastingDataFuzzTest()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/manager/src/
H A Dsoftbus_broadcast_mgr.c1517 int32_t SetBroadcastingData(int32_t bcId, const BroadcastPacket *packet) in SetBroadcastingData() function
1525 DISC_CHECK_AND_RETURN_RET_LOGE(g_interface[g_interfaceId]->SetBroadcastingData != NULL, in SetBroadcastingData()
1554 …ret = g_interface[g_interfaceId]->SetBroadcastingData(g_bcManager[bcId].adapterBcId, &softbusBcDat… in SetBroadcastingData()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/ble/src/
H A Dsoftbus_ble_gatt.c915 .SetBroadcastingData = SoftbusSetAdvData, in SoftbusBleAdapterInit()