Home
last modified time | relevance | path

Searched refs:ScanSettings (Results 1 – 17 of 17) sorted by relevance

/system/bt/service/common/android/bluetooth/
Dscan_settings.h31 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;
Dscan_settings.cc30 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()
DIBluetoothLeScanner.aidl21 import android.bluetooth.ScanSettings;
29 in ScanSettings settings, in StartScan()
DScanSettings.aidl19 parcelable ScanSettings cpp_header "android/bluetooth/scan_settings.h";
/system/bt/service/common/bluetooth/
Dscan_settings.cc21 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 ==()
Dscan_settings.h26 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/
Dparcelable_unittest.cc38 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()
DParcelableTest.aidl16 import android.bluetooth.ScanSettings;
24 void OnScanSettings(in ScanSettings scan_settings); in OnScanSettings()
Dlow_energy_scanner_unittest.cc265 TEST_F(LowEnergyScannerPostRegisterTest, ScanSettings) { in TEST_F() argument
270 ScanSettings settings; in TEST_F()
320 ScanSettings settings; in TEST_F()
/system/bt/service/
Dlow_energy_scanner.h74 bool StartScan(const ScanSettings& settings,
81 const ScanSettings& scan_settings() const { return scan_settings_; } in scan_settings()
113 ScanSettings scan_settings_;
Dlow_energy_scanner.cc96 bool LowEnergyScanner::StartScan(const ScanSettings& settings, in StartScan()
/system/bt/binder/android/bluetooth/le/
DScanSettings.aidl19 parcelable ScanSettings;
/system/bt/binder/android/bluetooth/
DIBluetoothGatt.aidl28 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/
Dbluetooth_le_scanner_binder_server.h59 const android::bluetooth::ScanSettings& settings,
Dbluetooth_le_scanner_binder_server.cc66 int scanner_id, const android::bluetooth::ScanSettings& settings, in StartScan()
/system/bt/service/doc/
DIBluetoothLowEnergy.txt66 boolean startScan(in int client_id, in ScanSettings settings,
/system/bt/service/client/
Dmain.cc939 bluetooth::ScanSettings settings; in HandleStartLeScan()