/system/bt/service/common/android/bluetooth/ |
D | scan_settings.h | 31 class ScanSettings : public Parcelable, public ::bluetooth::ScanSettings { 33 ScanSettings() = default; 35 ScanSettings(const ::bluetooth::ScanSettings& scan_settings) // NOLINT in ScanSettings() function 36 : ::bluetooth::ScanSettings(scan_settings){}; in ScanSettings() 37 ~ScanSettings() = default;
|
D | scan_settings.cc | 30 status_t ScanSettings::writeToParcel(Parcel* parcel) const { in writeToParcel() 50 status_t ScanSettings::readFromParcel(const Parcel* parcel) { in readFromParcel() 54 mode_ = static_cast<ScanSettings::Mode>(value); in readFromParcel() 58 callback_type_ = static_cast<ScanSettings::CallbackType>(value); in readFromParcel() 62 result_type_ = static_cast<ScanSettings::ResultType>(value); in readFromParcel() 70 match_mode_ = static_cast<ScanSettings::MatchMode>(value); in readFromParcel() 74 match_count_per_filter_ = static_cast<ScanSettings::MatchCount>(value); in readFromParcel()
|
D | IBluetoothLeScanner.aidl | 21 import android.bluetooth.ScanSettings; 29 in ScanSettings settings, in StartScan()
|
D | ScanSettings.aidl | 19 parcelable ScanSettings cpp_header "android/bluetooth/scan_settings.h";
|
/system/bt/service/common/bluetooth/ |
D | scan_settings.cc | 21 ScanSettings::ScanSettings() in ScanSettings() function in bluetooth::ScanSettings 27 ScanSettings::ScanSettings(Mode mode, CallbackTypeBitField callback_type, in ScanSettings() function in bluetooth::ScanSettings 39 bool ScanSettings::operator==(const ScanSettings& rhs) const { in operator ==()
|
D | scan_settings.h | 26 class ScanSettings { 115 ScanSettings(); 116 ScanSettings(Mode mode, CallbackTypeBitField callback_type, 119 virtual ~ScanSettings() = default; 150 bool operator==(const ScanSettings& rhs) const;
|
/system/bt/service/test/ |
D | parcelable_unittest.cc | 38 using bluetooth::ScanSettings; 93 TEST(ParcelableTest, ScanSettings) { in TEST() argument 94 ScanSettings settings0; in TEST() 95 ScanSettings settings1( in TEST() 96 ScanSettings::MODE_BALANCED, ScanSettings::CALLBACK_TYPE_FIRST_MATCH, in TEST() 97 ScanSettings::RESULT_TYPE_ABBREVIATED, in TEST() 98 base::TimeDelta::FromMilliseconds(150), ScanSettings::MATCH_MODE_STICKY, in TEST() 99 ScanSettings::MATCH_COUNT_FEW_ADVERTISEMENTS); in TEST() 102 TestData<ScanSettings, android::bluetooth::ScanSettings>(settings0); in TEST() 105 result = TestData<ScanSettings, android::bluetooth::ScanSettings>(settings0); in TEST()
|
D | ParcelableTest.aidl | 16 import android.bluetooth.ScanSettings; 24 void OnScanSettings(in ScanSettings scan_settings); in OnScanSettings()
|
D | low_energy_scanner_unittest.cc | 265 TEST_F(LowEnergyScannerPostRegisterTest, ScanSettings) { in TEST_F() argument 270 ScanSettings settings; in TEST_F() 320 ScanSettings settings; in TEST_F()
|
/system/bt/service/ |
D | low_energy_scanner.h | 74 bool StartScan(const ScanSettings& settings, 81 const ScanSettings& scan_settings() const { return scan_settings_; } in scan_settings() 113 ScanSettings scan_settings_;
|
D | low_energy_scanner.cc | 96 bool LowEnergyScanner::StartScan(const ScanSettings& settings, in StartScan()
|
/system/bt/binder/android/bluetooth/le/ |
D | ScanSettings.aidl | 19 parcelable ScanSettings;
|
/system/bt/binder/android/bluetooth/ |
D | IBluetoothGatt.aidl | 28 import android.bluetooth.le.ScanSettings; 48 void startScan(in int scannerId, in ScanSettings settings, in List<ScanFilter> filters, in startScan() 50 …void startScanForIntent(in PendingIntent intent, in ScanSettings settings, in List<ScanFilter> fil… in startScanForIntent()
|
/system/bt/service/ipc/binder/ |
D | bluetooth_le_scanner_binder_server.h | 59 const android::bluetooth::ScanSettings& settings,
|
D | bluetooth_le_scanner_binder_server.cc | 66 int scanner_id, const android::bluetooth::ScanSettings& settings, in StartScan()
|
/system/bt/service/doc/ |
D | IBluetoothLowEnergy.txt | 66 boolean startScan(in int client_id, in ScanSettings settings,
|
/system/bt/service/client/ |
D | main.cc | 939 bluetooth::ScanSettings settings; in HandleStartLeScan()
|