Home | History | Annotate | Download | only in hotspot2

Lines Matching defs:scanDetail

26 import com.android.server.wifi.ScanDetail;
50 ScanDetail scanDetail) {
53 mScanDetail = scanDetail;
57 ScanDetail mScanDetail;
73 public void update(List<ScanDetail> scanDetails) {}
76 public WifiConfiguration evaluateNetworks(List<ScanDetail> scanDetails,
79 List<Pair<ScanDetail, WifiConfiguration>> connectableNetworks) {
83 // Go through each ScanDetail and find the best provider for each ScanDetail.
85 for (ScanDetail scanDetail : scanDetails) {
87 if (!scanDetail.getNetworkDetail().isInterworking()) {
91 // Find the best provider for this ScanDetail.
93 mPasspointManager.matchProvider(scanDetail.getScanResult());
100 bestProvider.first, bestProvider.second, scanDetail));
138 * Create and return a WifiConfiguration for the given ScanDetail and PasspointProvider.
180 ScanDetail scanDetail = candidate.mScanDetail;
184 ScanResultUtil.createQuotedSSID(scanDetail.getSSID()));
186 scanDetail, mPasspointManager.getANQPElements(scanDetail.getScanResult()),