Home
last modified time | relevance | path

Searched refs:BleSetAdvData (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/discovery/ble/bluetooth_mock/
H A Dbluetooth_mock.h54 virtual int32_t BleSetAdvData(int32_t advId, const StartAdvRawData data) = 0;
99 MOCK_METHOD(int32_t, BleSetAdvData, (int32_t advId, const StartAdvRawData data), (override));
181 EXPECT_CALL(mock_, BleSetAdvData).Times(expectCallCount_[BLE_SET_ADV_DATA]); in Build()
H A Dbluetooth_mock.cpp478 int32_t BleSetAdvData(int32_t advId, const StartAdvRawData data) in BleSetAdvData() function
482 return BluetoothMock::GetMock()->BleSetAdvData(advId, data); in BleSetAdvData()
/ohos5.0/foundation/communication/dsoftbus/tests/core/discovery/ble/bt_state/
H A Ddisc_bt_state_mock_test.cpp578 EXPECT_CALL(mock, BleSetAdvData).Times(AtMost(1));
628 EXPECT_CALL(mock, BleSetAdvData).Times(AtMost(1));
634 EXPECT_CALL(mock, BleSetAdvData).Times(AtMost(1));
669 EXPECT_CALL(mock, BleSetAdvData).Times(AtMost(1));
677 EXPECT_CALL(mock, BleSetAdvData).Times(AtMost(1));
691 EXPECT_CALL(mock, BleSetAdvData).Times(AtMost(1));
/ohos5.0/docs/zh-cn/device-dev/porting/
H A Dporting-minichip-subsys-communication.md70 | BleSetAdvData | 设置广播数据。 |
/ohos5.0/foundation/communication/bluetooth/
H A DREADME_zh.md119 int BleSetAdvData(int advId, const BleConfigAdvData *data);
H A DREADME.md119 int BleSetAdvData(int advId, const BleConfigAdvData *data);
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gatt.h639 int BleSetAdvData(int advId, const StartAdvRawData data);
/ohos5.0/docs/en/device-dev/porting/
H A Dporting-minichip-subsys-communication.md70 | BleSetAdvData | Sets the data to advertise.|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt.cpp323 int BleSetAdvData(int advId, const StartAdvRawData data) in BleSetAdvData() function
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/ble/src/
H A Dsoftbus_ble_gatt.c604 int32_t ret = BtStatusToSoftBus(BleSetAdvData(btAdvId, advRawData)); in SoftbusSetAdvData()