/frameworks/base/wifi/tests/src/android/net/wifi/rtt/ |
D | WifiRttManagerTest.java | 357 ScanResult scan = new ScanResult(); in testResponderPreambleSelection() local 358 scan.BSSID = "00:01:02:03:04:05"; in testResponderPreambleSelection() 359 scan.informationElements = null; in testResponderPreambleSelection() 360 scan.channelWidth = ResponderConfig.CHANNEL_WIDTH_80MHZ; in testResponderPreambleSelection() 362 ResponderConfig config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection() 367 scan.channelWidth = ResponderConfig.CHANNEL_WIDTH_40MHZ; in testResponderPreambleSelection() 369 scan.informationElements = new ScanResult.InformationElement[2]; in testResponderPreambleSelection() 370 scan.informationElements[0] = htCap; in testResponderPreambleSelection() 371 scan.informationElements[1] = vhtCap; in testResponderPreambleSelection() 373 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection() [all …]
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagReaders.inc | 11 "cannot scan .eh_frame section in input %0", 12 "cannot scan .eh_frame section in input %0.")
|
D | EhFrameReader.h | 65 Token scan(ConstAddress pHandler, 90 EhFrameReader::Token EhFrameReader::scan<true>(ConstAddress pHandler,
|
/frameworks/av/media/libstagefright/id3/ |
D | testid3.cpp | 112 void scan(const char *path) { in scan() function 139 scan(newPath); in scan() 158 scan(argv[i]); in main()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/ |
D | BaseWifiScannerImplTest.java | 245 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in overlappingSingleScanFails() 266 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(false); in singleScanFailOnExecute() 294 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in singleScanFailOnTimeout() 326 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in singleScanFailOnFailedEvent() 381 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in multipleSingleScanSuccess() 454 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in singleScanWhereSupplicantReturnsSomeOldResults() 459 order.verify(mWifiNative).scan(eq(IFACE_NAME), anyInt(), eq(expectedScan), any(List.class)); in singleScanWhereSupplicantReturnsSomeOldResults() 506 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in doSuccessfulSingleScanTest() 520 order.verify(mWifiNative).scan( in expectSuccessfulSingleScan()
|
D | WificondScannerTest.java | 92 verify(mWifiNative, never()).scan(any(), anyInt(), any(), any(List.class)); in singleScanNotIssuedIfNoAvailableChannels() 144 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in lateScanResultsDoNotCauseSpuriousTimerCancellationOrCrash()
|
D | WificondPnoScannerTest.java | 181 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(List.class))).thenReturn(true); in startSuccessfulPnoScan()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | README.txt | 36 …cks the various settings (wifi toggle, airplane toggle, tethering toggle, scan mode toggle) and pr… 40 …ller: Controls whether the open network notification is displayed or not based on the scan results. 48 …s or from a third party app will show up a dialog reminding the user that scan mode will be on eve… 49 …- In the scan mode, the device continues to allow scanning from any app with Wi-Fi turned off. Thi…
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | ScanResultMatchInfoTest.java | 42 ScanDetail scan = createScanDetailForNetwork(conf, "AA:AA:AA:AA:AA:AA"); in testScanResultMatchesWifiConfiguration() local 44 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration() 47 scan = createScanDetailForNetwork(conf, "BB:BB:BB:BB:BB:BB"); in testScanResultMatchesWifiConfiguration() 49 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
|
D | WifiMetricsTest.java | 2008 List<ScanDetail> scan = new ArrayList<ScanDetail>(); in testNumConnectableNetworksGeneration() local 2010 scan.add(buildMockScanDetail("PASSPOINT_1", "bssid0", false, false, true, false)); in testNumConnectableNetworksGeneration() 2011 scan.add(buildMockScanDetail("PASSPOINT_2", "bssid1", false, false, true, false)); in testNumConnectableNetworksGeneration() 2012 scan.add(buildMockScanDetail("SSID_B", "bssid2", true, true, false, false)); in testNumConnectableNetworksGeneration() 2013 scan.add(buildMockScanDetail("SSID_B", "bssid3", true, true, false, false)); in testNumConnectableNetworksGeneration() 2014 scan.add(buildMockScanDetail("SSID_C", "bssid4", true, false, false, false)); in testNumConnectableNetworksGeneration() 2015 scan.add(buildMockScanDetail("SSID_D", "bssid5", false, true, false, false)); in testNumConnectableNetworksGeneration() 2016 scan.add(buildMockScanDetail("SSID_E", "bssid6", false, true, false, false)); in testNumConnectableNetworksGeneration() 2017 scan.add(buildMockScanDetail("SSID_F", "bssid7", false, false, false, false)); in testNumConnectableNetworksGeneration() 2018 scan.add(buildMockScanDetail("SSID_G_WEAK", "bssid9", false, false, false, true)); in testNumConnectableNetworksGeneration() [all …]
|
D | WificondControlTest.java | 343 assertFalse(mWificondControl.scan( in testTeardownClientInterfaceClearsHandles() 346 verify(mWifiScannerImpl, never()).scan(any()); in testTeardownClientInterfaceClearsHandles() 728 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScan() 729 assertTrue(mWificondControl.scan( in testScan() 732 verify(mWifiScannerImpl).scan(argThat(new ScanMatcher( in testScan() 742 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScanWithDuplicateHiddenSsids() 749 assertTrue(mWificondControl.scan( in testScanWithDuplicateHiddenSsids() 753 verify(mWifiScannerImpl).scan(argThat(new ScanMatcher( in testScanWithDuplicateHiddenSsids() 763 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScanNullParameters() 764 assertTrue(mWificondControl.scan( in testScanNullParameters() [all …]
|
D | WifiNativeTest.java | 546 mWifiNative.scan(WIFI_IFACE_NAME, WifiNative.SCAN_TYPE_HIGH_ACCURACY, SCAN_FREQ_SET, in testScan() 548 verify(mWificondControl).scan( in testScan()
|
/frameworks/base/proto/src/ |
D | wifi.proto | 72 // Error codes that a scan can result in. 88 // Could not start a scan because wifi is disabled. 99 // Return code of the scan. 102 // Number of entries that were found in the scan. 181 // Count of times connectivity watchdog confirmed background scan is working 184 // Count of times connectivity watchdog found background scan not working 203 // Total number of scan results 206 // Total number of scan results for open networks 209 // Total number of scan results for legacy personal networks 212 // Total number of scan results for legacy enterprise networks [all …]
|
/frameworks/base/core/java/android/hardware/radio/ |
D | ITuner.aidl | 52 void scan(boolean directionDown, boolean skipSubChannel); in scan() method
|
D | TunerAdapter.java | 141 public int scan(int direction, boolean skipSubChannel) { in scan() method in TunerAdapter 143 mTuner.scan(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); in scan()
|
D | RadioTuner.java | 160 public abstract int scan(int direction, boolean skipSubChannel); in scan() method in RadioTuner
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
D | TunerSession.java | 144 public void scan(boolean directionDown, boolean skipSubChannel) throws RemoteException { in scan() method in TunerSession 147 int halResult = mHwSession.scan(!directionDown, skipSubChannel); in scan()
|
/frameworks/base/cmds/idmap/ |
D | Android.bp | 21 "scan.cpp",
|
/frameworks/compile/mclinker/lib/LD/ |
D | EhFrameReader.cpp | 44 EhFrameReader::Token EhFrameReader::scan<true>(ConstAddress pHandler, in scan() function in mcld::EhFrameReader 135 Token token = scan<true>(handler, file_off, sect_reg); in read()
|
/frameworks/base/services/core/java/com/android/server/ |
D | EventLogTags.logtags | 161 # Package Manager .apk scan starts: 163 # Package Manager .apk scan starts: 165 # Package Manager .apk scan ends:
|
/frameworks/base/core/proto/android/wifi/ |
D | enums.proto | 37 * scans, and the subsequent reporting of scan results.
|
/frameworks/rs/script_api/ |
D | Specification.cpp | 227 bool VersionInfo::scan(Scanner* scanner, unsigned int maxApiLevel) { in scan() function in VersionInfo 369 if (!info.scan(scanner, maxApiLevel)) { in scanConstantSpecification() 398 if (!info.scan(scanner, maxApiLevel)) { in scanTypeSpecification() 615 if (!info.scan(scanner, maxApiLevel)) { in scanFunctionSpecification()
|
/frameworks/base/core/java/com/android/internal/alsa/ |
D | AlsaDevicesParser.java | 252 public int scan() { in scan() method in AlsaDevicesParser
|
D | AlsaCardsParser.java | 136 public int scan() { in scan() method in AlsaCardsParser
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/ |
D | Tuner.java | 182 public void scan(boolean directionDown, boolean skipSubChannel) { in scan() method in Tuner
|