Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/bluetooth_service/test/unittest/gatt_c/
H A Dgatt_c_test.cpp59 int res = BleStartScanEx(scanerId, &configs, filter, filterSize);
64 res = BleStartScanEx(scanerId, nullptr, filter, filterSize);
84 int res = BleStartScanEx(scanerId, &configs, nullptr, filterSize);
87 res = BleStartScanEx(scanerId, &configs, filter, 0);
127 int res = BleStartScanEx(scanerId, &configs, filter, filterSize);
135 res = BleStartScanEx(scanerId, &configs, filter, filterSize);
143 res = BleStartScanEx(scanerId, &configs, filter, filterSize);
170 int res = BleStartScanEx(scanerId, &configs, filter, filterSize);
176 res = BleStartScanEx(scanerId, &configs, filter, filterSize);
/ohos5.0/foundation/communication/dsoftbus/tests/core/discovery/ble/bluetooth_mock/
H A Dbluetooth_mock.h49 …virtual int32_t BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNati…
93 MOCK_METHOD(int32_t, BleStartScanEx, (int32_t scannerId, const BleScanConfigs *configs,
178 EXPECT_CALL(mock_, BleStartScanEx).Times(expectCallCount_[BLE_START_SCAN_EX]); in Build()
H A Dbluetooth_mock.cpp452 int32_t BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNativeFilter … in BleStartScanEx() function
456 return BluetoothMock::GetMock()->BleStartScanEx(scannerId, configs, filter, filterSize); in BleStartScanEx()
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/bluetooth/
H A Dbluetooth_mock.cpp104 int BleStartScanEx(int scannerId, BleScanConfigs *configs, BleScanNativeFilter *filter, unsigned in… in BleStartScanEx() function
106 return MockBluetooth::GetMocker()->BleStartScanEx(scannerId, configs, filter, filterSize); in BleStartScanEx()
H A Dbluetooth_mock.h43 virtual int BleStartScanEx(int scannerId, BleScanConfigs *configs, BleScanNativeFilter *filter,
95 MOCK_METHOD(int, BleStartScanEx,
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/broadcast/
H A Dbluetooth_mock.cpp133 int BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNativeFilter *fil… in BleStartScanEx() function
136 return MockBluetooth::GetMocker()->BleStartScanEx(scannerId, configs, filter, filterSize); in BleStartScanEx()
H A Dbluetooth_mock.h45 …virtual int BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNativeFi…
108 MOCK_METHOD(int, BleStartScanEx, (int32_t scannerId, const BleScanConfigs *configs,
H A Dsoftbus_ble_gatt_test.cpp1182 EXPECT_CALL(mocker, BleStartScanEx).WillRepeatedly(Return(OHOS_BT_STATUS_SUCCESS));
1214 EXPECT_CALL(mocker, BleStartScanEx).WillRepeatedly(Return(OHOS_BT_STATUS_SUCCESS));
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gatt.h848 int BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNativeFilter *fil…
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt.cpp923 int BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNativeFilter *fil… in BleStartScanEx() function
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/broadcast/adapter/ble/src/
H A Dsoftbus_ble_gatt.c671 int32_t ret = BleStartScanEx(btScannerId, &scanConfig, nativeFilter, (uint32_t)filterSize); in SoftbusStartScan()