Home
last modified time | relevance | path

Searched refs:matchInfo (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiCandidates.java296 public final ScanResultMatchInfo matchInfo; // Contains the SSID and security type field in WifiCandidates.Key
300 public Key(ScanResultMatchInfo matchInfo, in Key() argument
303 this.matchInfo = matchInfo; in Key()
312 return (this.matchInfo.equals(that.matchInfo) in equals()
319 return Objects.hash(matchInfo, bssid, networkId); in hashCode()
375 key.matchInfo.networkSsid, in add()
378 WifiScoreCardProto.SecurityType.forNumber(key.matchInfo.networkType)); in add()
DWifiMetrics.java2205 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromScanResult(scanResult); in incrementAvailableNetworksHistograms() local
2250 ssids.add(matchInfo); in incrementAvailableNetworksHistograms()
2252 boolean isOpen = matchInfo.networkType == WifiConfiguration.SECURITY_TYPE_OPEN; in incrementAvailableNetworksHistograms()
2259 openSsids.add(matchInfo); in incrementAvailableNetworksHistograms()
2263 savedSsids.add(matchInfo); in incrementAvailableNetworksHistograms()
DClientModeImpl.java2992 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromWifiConfiguration(wifiConfig); in handleNetworkDisconnect() local
2993 mWifiInjector.getWakeupController().setLastDisconnectInfo(matchInfo); in handleNetworkDisconnect()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWakeupControllerTest.java713 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromScanResult(mTestScanResult); in lastConnectedNetworkAddedToLock() local
718 mWakeupController.setLastDisconnectInfo(matchInfo); in lastConnectedNetworkAddedToLock()
721 verify(mWakeupLock).setLock(eq(Collections.singleton(matchInfo))); in lastConnectedNetworkAddedToLock()
739 ScanResultMatchInfo matchInfo = ScanResultMatchInfo.fromScanResult(mTestScanResult); in expiredLastConnectedNetworkNotAddedToLock() local
744 mWakeupController.setLastDisconnectInfo(matchInfo); in expiredLastConnectedNetworkNotAddedToLock()