Home
last modified time | relevance | path

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

12

/frameworks/base/wifi/tests/src/android/net/wifi/rtt/
DWifiRttManagerTest.java354 ScanResult scan = new ScanResult(); in testResponderPreambleSelection() local
355 scan.BSSID = "00:01:02:03:04:05"; in testResponderPreambleSelection()
356 scan.informationElements = null; in testResponderPreambleSelection()
357 scan.channelWidth = ResponderConfig.CHANNEL_WIDTH_80MHZ; in testResponderPreambleSelection()
359 ResponderConfig config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
364 scan.channelWidth = ResponderConfig.CHANNEL_WIDTH_40MHZ; in testResponderPreambleSelection()
366 scan.informationElements = new ScanResult.InformationElement[2]; in testResponderPreambleSelection()
367 scan.informationElements[0] = htCap; in testResponderPreambleSelection()
368 scan.informationElements[1] = vhtCap; in testResponderPreambleSelection()
370 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
[all …]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiMetricsTest.java1519 List<ScanDetail> scan = new ArrayList<ScanDetail>(); in testNumConnectableNetworksGeneration() local
1521 scan.add(buildMockScanDetail("PASSPOINT_1", "bssid0", false, false, true, false)); in testNumConnectableNetworksGeneration()
1522 scan.add(buildMockScanDetail("PASSPOINT_2", "bssid1", false, false, true, false)); in testNumConnectableNetworksGeneration()
1523 scan.add(buildMockScanDetail("SSID_B", "bssid2", true, true, false, false)); in testNumConnectableNetworksGeneration()
1524 scan.add(buildMockScanDetail("SSID_B", "bssid3", true, true, false, false)); in testNumConnectableNetworksGeneration()
1525 scan.add(buildMockScanDetail("SSID_C", "bssid4", true, false, false, false)); in testNumConnectableNetworksGeneration()
1526 scan.add(buildMockScanDetail("SSID_D", "bssid5", false, true, false, false)); in testNumConnectableNetworksGeneration()
1527 scan.add(buildMockScanDetail("SSID_E", "bssid6", false, true, false, false)); in testNumConnectableNetworksGeneration()
1528 scan.add(buildMockScanDetail("SSID_F", "bssid7", false, false, false, false)); in testNumConnectableNetworksGeneration()
1529 scan.add(buildMockScanDetail("SSID_G_WEAK", "bssid9", false, false, false, true)); in testNumConnectableNetworksGeneration()
[all …]
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()
DWificondControlTest.java299 assertFalse(mWificondControl.scan( in testTeardownClientInterfaceClearsHandles()
302 verify(mWifiScannerImpl, never()).scan(any()); in testTeardownClientInterfaceClearsHandles()
750 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScan()
751 assertTrue(mWificondControl.scan( in testScan()
754 verify(mWifiScannerImpl).scan(argThat(new ScanMatcher( in testScan()
764 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true); in testScanNullParameters()
765 assertTrue(mWificondControl.scan( in testScanNullParameters()
767 verify(mWifiScannerImpl).scan(argThat(new ScanMatcher( in testScanNullParameters()
776 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(false); in testScanFailure()
777 assertFalse(mWificondControl.scan( in testScanFailure()
[all …]
DWifiNativeTest.java519 mWifiNative.scan(WIFI_IFACE_NAME, WifiNative.SCAN_TYPE_HIGH_ACCURACY, SCAN_FREQ_SET, in testScan()
521 verify(mWificondControl).scan( 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/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/tests/wifitests/src/com/android/server/wifi/scanner/
DBaseWifiScannerImplTest.java244 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(true); in overlappingSingleScanFails()
267 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(false); in singleScanFailOnExecute()
297 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(true); in singleScanFailOnTimeout()
331 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(true); in singleScanFailOnFailedEvent()
386 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(true); in multipleSingleScanSuccess()
459 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(true); in singleScanWhereSupplicantReturnsSomeOldResults()
464 order.verify(mWifiNative).scan(eq(IFACE_NAME), anyInt(), eq(expectedScan), any(Set.class)); in singleScanWhereSupplicantReturnsSomeOldResults()
511 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(true); in doSuccessfulSingleScanTest()
525 order.verify(mWifiNative).scan( in expectSuccessfulSingleScan()
DWificondScannerTest.java91 verify(mWifiNative, never()).scan(any(), anyInt(), any(), any(Set.class)); in singleScanNotIssuedIfNoAvailableChannels()
143 when(mWifiNative.scan(eq(IFACE_NAME), anyInt(), any(), any(Set.class))).thenReturn(true); in lateScanResultsDoNotCauseSpuriousTimerCancellationOrCrash()
/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…
/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/opt/net/lowpan/tests/
Dscantest.sh42 adb shell lowpanctl -I wpan6 scan || die
Djointest.sh65 adb shell lowpanctl -I wpan6 scan || die
/frameworks/base/core/java/android/hardware/radio/
DITuner.aidl52 void scan(boolean directionDown, boolean skipSubChannel); in scan() method
DTunerAdapter.java141 public int scan(int direction, boolean skipSubChannel) { in scan() method in TunerAdapter
143 mTuner.scan(direction == RadioTuner.DIRECTION_DOWN, skipSubChannel); in scan()
DRadioTuner.java160 public abstract int scan(int direction, boolean skipSubChannel); in scan() method in RadioTuner
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
DTunerSession.java124 public void scan(boolean directionDown, boolean skipSubChannel) throws RemoteException { in scan() method in TunerSession
127 int halResult = mHwSession.scan(!directionDown, skipSubChannel); in scan()
/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.logtags155 # Package Manager .apk scan starts:
157 # Package Manager .apk scan starts:
159 # Package Manager .apk scan ends:
/frameworks/rs/script_api/
DSpecification.cpp227 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/
DAlsaCardsParser.java136 public int scan() { in scan() method in AlsaCardsParser
DAlsaDevicesParser.java252 public int scan() { in scan() method in AlsaDevicesParser
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
DTuner.java182 public void scan(boolean directionDown, boolean skipSubChannel) { in scan() method in Tuner

12