Home
last modified time | relevance | path

Searched refs:ScanType (Results 1 – 18 of 18) sorted by relevance

/aosp12/system/bt/gd/rust/linux/stack/src/
H A Dbluetooth_gatt.rs26 pub enum ScanType { enum
31 impl Default for ScanType { implementation
33 ScanType::Active in default()
50 pub scan_type: ScanType,
/aosp12/system/bt/gd/rust/linux/service/src/
H A Diface_bluetooth_gatt.rs2 IBluetoothGatt, IScannerCallback, RSSISettings, ScanFilter, ScanSettings, ScanType,
46 scan_type: ScanType,
52 impl_dbus_arg_enum!(ScanType);
/aosp12/hardware/interfaces/radio/1.2/vts/functional/
H A Dradio_hidl_hal_api.cpp48 .type = ScanType::ONE_SHOT, in TEST_P()
92 ::android::hardware::radio::V1_2::NetworkScanRequest request = {.type = ScanType::ONE_SHOT, in TEST_P()
123 .type = ScanType::ONE_SHOT, in TEST_P()
158 .type = ScanType::ONE_SHOT, in TEST_P()
193 .type = ScanType::ONE_SHOT, in TEST_P()
228 .type = ScanType::ONE_SHOT, in TEST_P()
263 .type = ScanType::ONE_SHOT, in TEST_P()
298 .type = ScanType::ONE_SHOT, in TEST_P()
335 .type = ScanType::ONE_SHOT, in TEST_P()
374 .type = ScanType::ONE_SHOT, in TEST_P()
/aosp12/hardware/interfaces/radio/1.4/vts/functional/
H A Dradio_hidl_hal_api.cpp265 .type = ScanType::ONE_SHOT, in TEST_P()
308 ::android::hardware::radio::V1_2::NetworkScanRequest request = {.type = ScanType::ONE_SHOT, in TEST_P()
337 .type = ScanType::ONE_SHOT, in TEST_P()
370 .type = ScanType::ONE_SHOT, in TEST_P()
402 .type = ScanType::ONE_SHOT, in TEST_P()
434 .type = ScanType::ONE_SHOT, in TEST_P()
466 .type = ScanType::ONE_SHOT, in TEST_P()
498 .type = ScanType::ONE_SHOT, in TEST_P()
530 .type = ScanType::ONE_SHOT, in TEST_P()
570 .type = ScanType::ONE_SHOT, in TEST_P()
/aosp12/frameworks/base/media/java/android/media/tv/tuner/frontend/
H A DDvbsFrontendSettings.java45 public @interface ScanType {} annotation in DvbsFrontendSettings
339 @ScanType
403 public Builder setScanType(@ScanType int scanType) { in setScanType()
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DNetworkScanRequest.java65 public @interface ScanType {} annotation in NetworkScanRequest
163 @ScanType
/aosp12/hardware/interfaces/radio/1.1/vts/functional/
H A Dradio_hidl_hal_api.cpp93 request.type = ScanType::ONE_SHOT; in TEST_P()
130 request.type = ScanType::ONE_SHOT; in TEST_P()
/aosp12/hardware/interfaces/radio/1.5/vts/functional/
H A Dradio_hidl_hal_api.cpp581 .type = ScanType::ONE_SHOT, in TEST_P()
618 ::android::hardware::radio::V1_5::NetworkScanRequest request = {.type = ScanType::ONE_SHOT, in TEST_P()
659 .type = ScanType::ONE_SHOT, in TEST_P()
703 .type = ScanType::ONE_SHOT, in TEST_P()
747 .type = ScanType::ONE_SHOT, in TEST_P()
791 .type = ScanType::ONE_SHOT, in TEST_P()
835 .type = ScanType::ONE_SHOT, in TEST_P()
879 .type = ScanType::ONE_SHOT, in TEST_P()
923 .type = ScanType::ONE_SHOT, in TEST_P()
972 .type = ScanType::ONE_SHOT, in TEST_P()
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DWifiAnnotations.java41 public @interface ScanType {} annotation in WifiAnnotations
H A DWifiScanner.java452 @WifiAnnotations.ScanType
/aosp12/hardware/interfaces/radio/1.1/
H A Dtypes.hal125 enum ScanType : int32_t {
165 ScanType type; // One shot scan or periodic
/aosp12/frameworks/base/wifi/java/src/android/net/wifi/nl80211/
H A DWifiNl80211Manager.java966 private static int getScanType(@WifiAnnotations.ScanType int scanType) { in getScanType()
983 public boolean startScan(@NonNull String ifaceName, @WifiAnnotations.ScanType int scanType, in startScan()
1011 public boolean startScan(@NonNull String ifaceName, @WifiAnnotations.ScanType int scanType, in startScan()
/aosp12/frameworks/base/media/java/android/media/tv/tuner/
H A DTuner.java184 public @interface ScanType {} annotation in Tuner
761 public int scan(@NonNull FrontendSettings settings, @ScanType int scanType, in scan()
/aosp12/hardware/interfaces/radio/1.2/
H A Dtypes.hal42 import @1.1::ScanType;
161 ScanType type;
/aosp12/hardware/interfaces/radio/1.5/
H A Dtypes.hal33 import @1.1::ScanType;
300 ScanType type;
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiMetrics.java7916 public enum ScanType { SINGLE, BACKGROUND }
7935 public @interface ScanType {}
8034 public void logScanStarted(@ScanType int scanType) {
8048 public void logScanFailedToStart(@ScanType int scanType) {
8066 public void logScanSucceeded(@ScanType int scanType, int countOfNetworksFound) {
8108 public void logScanFailed(@ScanType int scanType) {
8117 private void log(@ScanType int scanType, int result, int countNetworks) {
H A DWifiNative.java1583 @NonNull String ifaceName, @WifiAnnotations.ScanType int scanType, Set<Integer> freqs, in scan()
3036 @WifiAnnotations.ScanType
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java1100 boolean validateScanType(@WifiAnnotations.ScanType int type) { in validateScanType()