Home
last modified time | relevance | path

Searched refs:BleStopAdv (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/discovery/ble/bluetooth_mock/
H A Dbluetooth_mock.h53 virtual int32_t BleStopAdv(int32_t advId) = 0;
98 MOCK_METHOD(int32_t, BleStopAdv, (int32_t advId), (override));
182 EXPECT_CALL(mock_, BleStopAdv).Times(expectCallCount_[BLE_STOP_ADV]); in Build()
H A Dbluetooth_mock.cpp107 ON_CALL(*this, BleStopAdv).WillByDefault(BluetoothMock::ActionBleStopAdv); in BluetoothMock()
472 int32_t BleStopAdv(int32_t advId) in BleStopAdv() function
475 return BluetoothMock::GetMock()->BleStopAdv(advId); in BleStopAdv()
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/bluetooth/
H A Dbluetooth_mock.cpp119 int BleStopAdv(int advId) in BleStopAdv() function
121 return MockBluetooth::GetMocker()->BleStopAdv(advId); in BleStopAdv()
H A Dbluetooth_mock.h47 virtual int BleStopAdv(int advId) = 0;
99 MOCK_METHOD(int, BleStopAdv, (int advId), (override));
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/broadcast/
H A Dbluetooth_mock.h49 virtual int BleStopAdv(int advId) = 0;
112 MOCK_METHOD(int, BleStopAdv, (int advId), (override));
H A Dbluetooth_mock.cpp170 int BleStopAdv(int advId) in BleStopAdv() function
H A Dsoftbus_ble_gatt_test.cpp606 EXPECT_CALL(mocker, BleStopAdv).WillRepeatedly(Return(OHOS_BT_STATUS_SUCCESS));
631 EXPECT_CALL(mocker, BleStopAdv).WillRepeatedly(Return(OHOS_BT_STATUS_SUCCESS));
758 EXPECT_CALL(mocker, BleStopAdv).WillRepeatedly(Return(OHOS_BT_STATUS_SUCCESS));
/ohos5.0/docs/zh-cn/device-dev/porting/
H A Dporting-minichip-subsys-communication.md73 | BleStopAdv | 停止发送广播。 |
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gatt.h660 int BleStopAdv(int advId);
/ohos5.0/docs/en/device-dev/porting/
H A Dporting-minichip-subsys-communication.md73 | BleStopAdv | Stops sending advertising messages.|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt.cpp364 int BleStopAdv(int advId) in BleStopAdv() function
1432 BleStopAdv(advHandle); in StartAdvAddrTimer()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/ble/src/
H A Dsoftbus_ble_gatt.c555 int32_t ret = BleStopAdv(btAdvId); in SoftbusStopAdv()
891 (void)BleStopAdv(advChannel->advId); in BcAdapterBtStateChanged()