Home
last modified time | relevance | path

Searched refs:scan (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DScanResultMatchInfoTest.java41 ScanDetail scan = createScanDetailForNetwork(conf, "AA:AA:AA:AA:AA:AA"); in testScanResultMatchesWifiConfiguration() local
43 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
46 scan = createScanDetailForNetwork(conf, "BB:BB:BB:BB:BB:BB"); in testScanResultMatchesWifiConfiguration()
48 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
DWifiMetricsTest.java1204 List<ScanDetail> scan = new ArrayList<ScanDetail>(); in testNumConnectableNetworksGeneration() local
1206 scan.add(buildMockScanDetail("PASSPOINT_1", "bssid0", false, false, true, false)); in testNumConnectableNetworksGeneration()
1207 scan.add(buildMockScanDetail("PASSPOINT_2", "bssid1", false, false, true, false)); in testNumConnectableNetworksGeneration()
1208 scan.add(buildMockScanDetail("SSID_B", "bssid2", true, true, false, false)); in testNumConnectableNetworksGeneration()
1209 scan.add(buildMockScanDetail("SSID_B", "bssid3", true, true, false, false)); in testNumConnectableNetworksGeneration()
1210 scan.add(buildMockScanDetail("SSID_C", "bssid4", true, false, false, false)); in testNumConnectableNetworksGeneration()
1211 scan.add(buildMockScanDetail("SSID_D", "bssid5", false, true, false, false)); in testNumConnectableNetworksGeneration()
1212 scan.add(buildMockScanDetail("SSID_E", "bssid6", false, true, false, false)); in testNumConnectableNetworksGeneration()
1213 scan.add(buildMockScanDetail("SSID_F", "bssid7", false, false, false, false)); in testNumConnectableNetworksGeneration()
1214 scan.add(buildMockScanDetail("SSID_G_WEAK", "bssid9", false, false, false, true)); in testNumConnectableNetworksGeneration()
[all …]
DWificondControlTest.java562 when(scanner.scan(any(SingleScanSettings.class))).thenReturn(true); in testScan()
564 assertTrue(mWificondControl.scan(SCAN_FREQ_SET, SCAN_HIDDEN_NETWORK_SSID_SET)); in testScan()
565 verify(scanner).scan(argThat(new ScanMatcher( in testScan()
576 when(scanner.scan(any(SingleScanSettings.class))).thenReturn(true); in testScanNullParameters()
578 assertTrue(mWificondControl.scan(null, null)); in testScanNullParameters()
579 verify(scanner).scan(argThat(new ScanMatcher(null, null))); in testScanNullParameters()
589 when(scanner.scan(any(SingleScanSettings.class))).thenReturn(false); in testScanFailure()
590 assertFalse(mWificondControl.scan(SCAN_FREQ_SET, SCAN_HIDDEN_NETWORK_SSID_SET)); in testScanFailure()
591 verify(scanner).scan(any(SingleScanSettings.class)); in testScanFailure()
DWifiNativeTest.java682 mWifiNative.scan(SCAN_FREQ_SET, SCAN_HIDDEN_NETWORK_SSID_SET); in testScan()
683 verify(mWificondControl).scan(SCAN_FREQ_SET, SCAN_HIDDEN_NETWORK_SSID_SET); in testScan()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagReaders.inc11 "cannot scan .eh_frame section in input %0",
12 "cannot scan .eh_frame section in input %0.")
DEhFrameReader.h65 Token scan(ConstAddress pHandler,
90 EhFrameReader::Token EhFrameReader::scan<true>(ConstAddress pHandler,
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
DBaseWifiScannerImplTest.java228 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in overlappingSingleScanFails()
251 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(false); in singleScanFailOnExecute()
281 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in singleScanFailOnTimeout()
315 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in singleScanFailOnFailedEvent()
369 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in multipleSingleScanSuccess()
442 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in singleScanWhereSupplicantReturnsSomeOldResults()
447 order.verify(mWifiNative).scan(eq(expectedScan), any(Set.class)); in singleScanWhereSupplicantReturnsSomeOldResults()
494 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in doSuccessfulSingleScanTest()
508 order.verify(mWifiNative).scan(eq(expectedScan), eq(expectedHiddenNetSSIDs)); in expectSuccessfulSingleScan()
DWificondScannerTest.java88 verify(mWifiNative, never()).scan(any(), any(Set.class)); in singleScanNotIssuedIfNoAvailableChannels()
359 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(false); in backgroundScanStartFailed()
394 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in backgroundScanEventFailed()
441 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in pauseWhileWaitingToStartNextScanAndResumeScan()
495 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in pauseWhileScanningAndResumeScan()
502 order.verify(mWifiNative).scan(eq(expectedPeriods[0].getScanFreqs()), any(Set.class)); in pauseWhileScanningAndResumeScan()
568 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in pauseWhileWaitingToStartNextScanAndStartNewScan()
628 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in doSuccessfulTest()
685 order.verify(mWifiNative).scan(eq(scanFreqs), any(Set.class)); in expectSuccessfulBackgroundScan()
711 order.verify(mWifiNative).scan(eq(scanFreqs), any(Set.class)); in expectFailedScanStart()
[all …]
DWificondPnoScannerTest.java392 when(mWifiNative.scan(any(), any(Set.class))).thenReturn(true); in startSuccessfulPnoScan()
453 order.verify(mWifiNative).scan(eq(expectedScanFreqs), any(Set.class)); in expectSuccessfulSingleScanWithHwPnoEnabled()
476 order.verify(mWifiNative).scan(any(), any(Set.class)); in expectSuccessfulSwPnoScan()
/frameworks/av/media/libstagefright/id3/
Dtestid3.cpp112 void scan(const char *path) { in scan() function
139 scan(newPath); in scan()
158 scan(argv[i]); in main()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DREADME.txt33 …cks the various settings (wifi toggle, airplane toggle, tethering toggle, scan mode toggle) and pr…
37 …ller: Controls whether the open network notification is displayed or not based on the scan results.
45 …s or from a third party app will show up a dialog reminding the user that scan mode will be on eve…
46 …- In the scan mode, the device continues to allow scanning from any app with Wi-Fi turned off. Thi…
DWificondControl.java415 public boolean scan(Set<Integer> freqs, Set<String> hiddenNetworkSSIDs) { in scan() method in WificondControl
445 return mWificondScanner.scan(settings); in scan()
DWifiNative.java220 public boolean scan(Set<Integer> freqs, Set<String> hiddenNetworkSSIDs) { in scan() method in WifiNative
221 return mWificondControl.scan(freqs, hiddenNetworkSSIDs); in scan()
/frameworks/base/proto/src/
Dwifi.proto72 // 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 personal networks
212 // Total number of scan results for enterprise networks
[all …]
/frameworks/base/cmds/idmap/
DAndroid.mk18 LOCAL_SRC_FILES := idmap.cpp create.cpp scan.cpp inspect.cpp
/frameworks/base/core/java/android/hardware/radio/
DITuner.aidl51 void scan(boolean directionDown, boolean skipSubChannel); in scan() method
DTunerAdapter.java131 public int scan(int direction, boolean skipSubChannel) { in scan() method in TunerAdapter
133 mTuner.scan(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); in scan()
DRadioTuner.java155 public abstract int scan(int direction, boolean skipSubChannel); in scan() method in RadioTuner
/frameworks/base/core/java/com/android/internal/alsa/
DAlsaCardsParser.java107 public void scan() { in scan() method in AlsaCardsParser
185 scan(); in getDefaultUsbCard()
DAlsaDevicesParser.java261 public void scan() { in scan() method in AlsaDevicesParser
/frameworks/compile/mclinker/lib/LD/
DEhFrameReader.cpp44 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/
DEventLogTags.logtags148 # Package Manager .apk scan starts:
150 # Package Manager .apk scan starts:
152 # Package Manager .apk scan ends:
/frameworks/rs/script_api/
DSpecification.cpp227 bool VersionInfo::scan(Scanner* scanner, unsigned int maxApiLevel) { in scan() function in VersionInfo
368 if (!info.scan(scanner, maxApiLevel)) { in scanConstantSpecification()
397 if (!info.scan(scanner, maxApiLevel)) { in scanTypeSpecification()
614 if (!info.scan(scanner, maxApiLevel)) { in scanFunctionSpecification()
/frameworks/base/services/core/java/com/android/server/broadcastradio/
DTuner.java178 public void scan(boolean directionDown, boolean skipSubChannel) { in scan() method in Tuner
/frameworks/base/services/usb/java/com/android/server/usb/
DUsbAlsaManager.java135 mCardsParser.scan(); in UsbAlsaManager()
317 mDevicesParser.scan(); in selectAudioCard()

12