Home
last modified time | relevance | path

Searched refs:maxExtAdvEvents (Results 1 - 23 of 23) sorted by relevance

/foundation/communication/dsoftbus/core/broadcast/scheduler/src/
H A Dbroadcast_scheduler.c126 int32_t SchedulerSetLpAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, in SchedulerSetLpAdvParam() argument
129 return BroadcastSetLpAdvParam(duration, maxExtAdvEvents, window, interval, bcHandle); in SchedulerSetLpAdvParam()
H A Dbroadcast_scheduler_virtual.c162 int32_t SchedulerSetLpAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, in SchedulerSetLpAdvParam() argument
166 (void)maxExtAdvEvents; in SchedulerSetLpAdvParam()
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_ble_central_manager_proxy.h41 int SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, int advHandle) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_ble_central_manager.h62 virtual int SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, int advHandle) = 0;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_ble_central_manager_server.h47 int SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, int advHandle) override;
/foundation/communication/dsoftbus/core/broadcast/scheduler/interface/
H A Dbroadcast_scheduler.h309 * @param maxExtAdvEvents Indicates maximum number of extended broadcast events.
320 int32_t SchedulerSetLpAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window,
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/include/
H A Dsoftbus_broadcast_adapter_interface.h90 int32_t (*SetLpDeviceParam)(int32_t duration, int32_t maxExtAdvEvents, int32_t window,
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/interface/
H A Dsoftbus_broadcast_manager.h342 * @param maxExtAdvEvents Indicates maximum number of extended broadcast events.
353 int32_t BroadcastSetLpAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window,
/foundation/communication/dsoftbus/tests/adapter/broadcast/
H A Dbluetooth_mock.h54 int32_t duration, int32_t maxExtAdvEvents, int32_t window, int32_t interval, int32_t bcHandle) = 0;
120 (int32_t duration, int32_t maxExtAdvEvents, int32_t window, int32_t interval, int32_t bcHandle), (override));
H A Dbluetooth_mock.cpp159 int32_t SetLpDeviceAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, in SetLpDeviceAdvParam() argument
H A Dsoftbus_ble_gatt_test.cpp964 int32_t maxExtAdvEvents = 0; in HWTEST_F() local
970 ret = MockBluetooth::interface->SetLpDeviceParam(duration, maxExtAdvEvents, window, interval, bcHandle); in HWTEST_F()
/foundation/communication/dsoftbus/tests/adapter/fuzztest/softbusbroadcast_fuzzer/
H A Dsoftbusbroadcast_fuzzer.cpp299 int32_t maxExtAdvEvents = GetData<int32_t>(); in BroadcastSetLpAdvParamFuzzTest() local
304 BroadcastSetLpAdvParam(duration, maxExtAdvEvents, window, interval, lpAdvBCHandle); in BroadcastSetLpAdvParamFuzzTest()
/foundation/communication/dsoftbus/tests/core/discovery/ble/bluetooth_mock/
H A Dbluetooth_mock.h60 virtual int32_t SetLpDeviceAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, int32_t interval,
105 MOCK_METHOD(int32_t, SetLpDeviceAdvParam, (int32_t duration, int32_t maxExtAdvEvents, int32_t window,
H A Dbluetooth_mock.cpp506 int32_t SetLpDeviceAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, int32_t interval, in SetLpDeviceAdvParam() argument
510 return BluetoothMock::GetMock()->SetLpDeviceAdvParam(duration, maxExtAdvEvents, window, interval, bcHandle); in SetLpDeviceAdvParam()
/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt.cpp982 * @param maxExtAdvEvents maximum number of extended advertising events.
990 int SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, int advHandle) in SetLpDeviceAdvParam() argument
992 HILOGI("SetLpDeviceAdvParam enter. duration: %{public}d, maxExtAdvEvents: %{public}d, window: %{public}d \ in SetLpDeviceAdvParam()
993 interval: %{public}d, advHandle: %{public}d", duration, maxExtAdvEvents, window, interval, advHandle); in SetLpDeviceAdvParam()
999 if (maxExtAdvEvents < LPDEVICE_ADVERTISING_EXTADVEVENT_MIN in SetLpDeviceAdvParam()
1000 || maxExtAdvEvents > LPDEVICE_ADVERTISING_EXTADVEVENT_MAX) { in SetLpDeviceAdvParam()
1001 HILOGE("maxExtAdvEvents out of range:, maxExtAdvEvents: %{public}d", maxExtAdvEvents); in SetLpDeviceAdvParam()
1025 int ret = bleCentralManager->SetLpDeviceAdvParam(duration, maxExtAdvEvents, windo in SetLpDeviceAdvParam()
[all...]
/foundation/communication/dsoftbus/tests/adapter/bluetooth/broadcast/
H A Dsoftbus_ble_mock.cpp179 static int32_t MockSetLpDeviceParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, in MockSetLpDeviceParam() argument
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_ble_central_manager_proxy.cpp207 int BluetoothBleCentralManagerProxy::SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, in SetLpDeviceAdvParam() argument
219 if (!data.WriteInt32(maxExtAdvEvents)) { in SetLpDeviceAdvParam()
220 HILOGE("[SetLpDeviceAdvParam] fail: write maxExtAdvEvents failed"); in SetLpDeviceAdvParam()
/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gatt.h854 * @param maxExtAdvEvents maximum number of extended advertising events.
862 int SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, int advHandle);
/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_ble_central_manager.h593 * @param maxExtAdvEvents maximum number of extended advertising events.
599 int SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, int advHandle);
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_ble_central_manager.cpp390 int BleCentralManager::SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, int window, int interval, int advHandle) in SetLpDeviceAdvParam() argument
400 return proxy->SetLpDeviceAdvParam(duration, maxExtAdvEvents, window, interval, advHandle); in SetLpDeviceAdvParam()
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/ble/src/
H A Dsoftbus_ble_gatt.c867 static int32_t SoftbusSetLpAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, in SoftbusSetLpAdvParam() argument
870 int32_t ret = SetLpDeviceAdvParam(duration, maxExtAdvEvents, window, interval, bcHandle); in SoftbusSetLpAdvParam()
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_ble_central_manager_server.cpp738 int BluetoothBleCentralManagerServer::SetLpDeviceAdvParam(int duration, int maxExtAdvEvents, in SetLpDeviceAdvParam() argument
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/manager/src/
H A Dsoftbus_broadcast_mgr.c1912 int32_t BroadcastSetLpAdvParam(int32_t duration, int32_t maxExtAdvEvents, int32_t window, in BroadcastSetLpAdvParam() argument
1922 int32_t ret = g_interface[g_interfaceId]->SetLpDeviceParam(duration, maxExtAdvEvents, window, interval, bcHandle); in BroadcastSetLpAdvParam()

Completed in 21 milliseconds