/ohos5.0/foundation/communication/bluetooth_service/test/unittest/gatt_c/ |
H A D | gatt_c_test.cpp | 59 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 D | bluetooth_mock.h | 49 …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 D | bluetooth_mock.cpp | 452 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 D | bluetooth_mock.cpp | 104 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 D | bluetooth_mock.h | 43 virtual int BleStartScanEx(int scannerId, BleScanConfigs *configs, BleScanNativeFilter *filter, 95 MOCK_METHOD(int, BleStartScanEx,
|
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/broadcast/ |
H A D | bluetooth_mock.cpp | 133 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 D | bluetooth_mock.h | 45 …virtual int BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNativeFi… 108 MOCK_METHOD(int, BleStartScanEx, (int32_t scannerId, const BleScanConfigs *configs,
|
H A D | softbus_ble_gatt_test.cpp | 1182 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 D | ohos_bt_gatt.h | 848 int BleStartScanEx(int32_t scannerId, const BleScanConfigs *configs, const BleScanNativeFilter *fil…
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/ |
H A D | ohos_bt_gatt.cpp | 923 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 D | softbus_ble_gatt.c | 671 int32_t ret = BleStartScanEx(btScannerId, &scanConfig, nativeFilter, (uint32_t)filterSize); in SoftbusStartScan()
|