Home
last modified time | relevance | path

Searched refs:targetNetwork (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiConnectivityManager.java535 WifiConfiguration targetNetwork = new WifiConfiguration(secondaryCmmCandidate); in handleConnectToMultiInternetConnectionInternal() local
536 targetNetwork.ephemeral = true; in handleConnectToMultiInternetConnectionInternal()
537 targetNetwork.BSSID = targetBssid2; // specify the BSSID to disable roaming. in handleConnectToMultiInternetConnectionInternal()
538 connectToNetworkUsingCmmWithoutMbb(cm, targetNetwork); in handleConnectToMultiInternetConnectionInternal()
541 targetNetwork.isPasspoint()); in handleConnectToMultiInternetConnectionInternal()
1584 WifiConfiguration targetNetwork, in connectToNetworkForPrimaryCmmUsingMbbIfAvailable()
1586 triggerConnectToNetworkUsingCmm(primaryManager, targetNetwork, targetBssid); in connectToNetworkForPrimaryCmmUsingMbbIfAvailable()
1596 WifiConfiguration targetNetwork, in connectToNetworkForPrimaryCmmUsingMbbIfAvailable()
1609 && targetNetwork.macRandomizationSetting == RANDOMIZATION_NONE) { in connectToNetworkForPrimaryCmmUsingMbbIfAvailable()
1611 primaryManager, targetNetwork, targetBssid); in connectToNetworkForPrimaryCmmUsingMbbIfAvailable()
[all …]
/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/util/
DMdnsUtils.java164 public static boolean isNetworkMatched(@Nullable Network targetNetwork, in isNetworkMatched() argument
166 return targetNetwork == null || targetNetwork.equals(currentNetwork); in isNetworkMatched()
170 public static boolean isAnyNetworkMatched(@Nullable Network targetNetwork, in isAnyNetworkMatched() argument
172 if (targetNetwork == null) { in isAnyNetworkMatched()
175 return currentNetworks.contains(targetNetwork); in isAnyNetworkMatched()