Home
last modified time | relevance | path

Searched refs:fromScanResult (Results 1 – 19 of 19) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DScanResultMatchInfoTest.java102 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
107 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
112 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
114 .equals(ScanResultMatchInfo.fromScanResult( in testScanResultMatchesWifiConfiguration()
120 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
125 ScanResultMatchInfo.fromScanResult(scan.getScanResult())); in testScanResultMatchesWifiConfiguration()
139 assertEquals(ScanResultMatchInfo.fromScanResult(scan1.getScanResult()), in testDifferentBssidScanResultsMatch()
140 ScanResultMatchInfo.fromScanResult(scan2.getScanResult())); in testDifferentBssidScanResultsMatch()
158 assertTrue(ScanResultMatchInfo.fromScanResult(scanOpen1.getScanResult()) in testDifferentNetworkScanResultsDontMatch()
159 != ScanResultMatchInfo.fromScanResult(scanOpen2.getScanResult())); in testDifferentNetworkScanResultsDontMatch()
[all …]
DWakeupControllerTest.java449 Collections.singleton(ScanResultMatchInfo.fromScanResult(savedScanResult)); in startInitializesWakeupLockWithSavedScanResults()
489 Collections.singleton(ScanResultMatchInfo.fromScanResult(savedScanResult)); in startInitializesWakeupLockWithNetworkSuggestions()
534 ScanResultMatchInfo.fromScanResult(savedScanResult), in startInitializesWakeupLockWithSavedScanResultsAndNetworkSuggestions()
535 ScanResultMatchInfo.fromScanResult(suggestionScanResult)); in startInitializesWakeupLockWithSavedScanResultsAndNetworkSuggestions()
615 Collections.singleton(ScanResultMatchInfo.fromScanResult(scanResult24)); in startFiltersOutDfsScanResults()
648 ScanResultMatchInfo expectedMatchInfo = ScanResultMatchInfo.fromScanResult(mTestScanResult); in onResultsUpdatesWakeupLockForSavedNetworks()
678 ScanResultMatchInfo expectedMatchInfo = ScanResultMatchInfo.fromScanResult(mTestScanResult); in onResultsUpdatesWakeupLockForNetworkSuggestions()
864 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromScanResult(mTestScanResult); in lastConnectedNetworkAddedToLock()
890 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromScanResult(mTestScanResult); in expiredLastConnectedNetworkNotAddedToLock()
DWifiNetworkSelectorTestUtil.java183 ScanResultMatchInfo.fromScanResult(scanResult), in checkConsistencyOfScanDetailsAndWifiConfigs()
DWifiNetworkSuggestionsManagerTest.java4042 () -> ScanResultMatchInfo.fromScanResult(nonPasspointScanResult)); in getMatchingScanResultsTestWithPasspointAndNonPasspointMatch()
4044 () -> ScanResultMatchInfo.fromScanResult(passpointScanResult)); in getMatchingScanResultsTestWithPasspointAndNonPasspointMatch()
4079 when(ScanResultMatchInfo.fromScanResult(eq(nonPasspointScanResult))) in getMatchingScanResultsTestWithMatchNothing()
DWifiConnectivityManagerTest.java1363 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromScanResult(result); in getTestWifiCandidate()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/rtt/
DWifiRttManagerTest.java297 ResponderConfig responderConfig2a = ResponderConfig.fromScanResult(scanResult2); in testRangingRequestAtLimit()
374 ResponderConfig responderConfig2 = ResponderConfig.fromScanResult(scanResult2); in testNon80211mcRangingRequestAtLimit()
643 ResponderConfig config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
654 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
662 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
670 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
680 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
689 config = ResponderConfig.fromScanResult(scan); in testResponderPreambleSelection()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiCandidates.java675 SecurityParams params = ScanResultMatchInfo.fromScanResult(scanResult) in keyFromScanDetailAndConfig()
681 + ScanResultMatchInfo.fromScanResult(scanResult) in keyFromScanDetailAndConfig()
687 return new Key(ScanResultMatchInfo.fromScanResult(scanResult), bssid, config.networkId, in keyFromScanDetailAndConfig()
760 ScanResultMatchInfo key1 = ScanResultMatchInfo.fromScanResult(scanResult); in validConfigAndScanDetail()
DWakeupEvaluator.java54 if (networks.contains(ScanResultMatchInfo.fromScanResult(scanResult))) { in findViableNetwork()
DWifiNetworkFactory.java1659 ScanResultMatchInfo fromScanResult = ScanResultMatchInfo.fromScanResult(scanResult); in doesScanResultMatchWifiNetworkSpecifier() local
1662 return fromScanResult.networkTypeEquals(fromWifiConfiguration); in doesScanResultMatchWifiNetworkSpecifier()
1797 ScanResultMatchInfo.fromScanResult(scanResult), in findBestBssidFromActiveMatchedScanResultsForNetwork()
1902 ScanResultMatchInfo fromScanResult = ScanResultMatchInfo.fromScanResult(scanResult); in addNetworkToUserApprovedAccessPointMap() local
1903 SecurityParams params = fromScanResult.matchForNetworkSelection(fromWifiConfiguration); in addNetworkToUserApprovedAccessPointMap()
DConfigurationMap.java146 ScanResultMatchInfo.fromScanResult(scanResult)); in getByScanResultForCurrentUser()
DScanResultMatchInfo.java61 public static ScanResultMatchInfo fromScanResult(ScanResult scanResult) { in fromScanResult() method in ScanResultMatchInfo
DWakeupController.java463 .map(ScanResultMatchInfo::fromScanResult) in toMatchInfos()
DWifiNetworkSuggestionsManager.java1868 ScanResultMatchInfo.fromScanResult(scanResult); in getNetworkSuggestionsForScanDetail()
1961 ScanResultMatchInfo.fromScanResult(scanResult); in getWifiConfigForMatchedNetworkSuggestionsSharedWithUser()
2583 if (matchInfoFromConfigration.equals(ScanResultMatchInfo.fromScanResult(scanResult))) { in getMatchingScanResults()
DClientModeImpl.java8155 ScanResultMatchInfo key2 = ScanResultMatchInfo.fromScanResult(scanResult); in updateWifiConfigOnStartConnection()
DWifiMetrics.java4193 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromScanResult(scanResult); in incrementAvailableNetworksHistograms()
/packages/modules/Wifi/framework/java/android/net/wifi/rtt/
DRangingRequest.java280 return addResponder(ResponderConfig.fromScanResult(apInfo)); in addAccessPoint()
405 return addResponder(ResponderConfig.fromScanResult(apInfo)); in addNon80211mcCapableAccessPoint()
DResponderConfig.java426 public static ResponderConfig fromScanResult(@NonNull ScanResult scanResult) { in fromScanResult() method in ResponderConfig
/packages/modules/Wifi/framework/java/android/net/wifi/
DRttManager.java970 android.net.wifi.rtt.ResponderConfig.fromScanResult(reconstructed)); in startRanging()
/packages/modules/Wifi/framework/api/
Dcurrent.txt1758 …method @NonNull public static android.net.wifi.rtt.ResponderConfig fromScanResult(@NonNull android…