Home
last modified time | relevance | path

Searched refs:NetworkDetail (Results 1 – 18 of 18) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointMatchInfo.java35 private static final Map<NetworkDetail.Ant, Integer> sAntScores = new HashMap<>();
40 sAntScores.put(NetworkDetail.Ant.FreePublic, 4); in sAntScores.put()
41 sAntScores.put(NetworkDetail.Ant.ChargeablePublic, 4); in sAntScores.put()
42 sAntScores.put(NetworkDetail.Ant.PrivateWithGuest, 4); in sAntScores.put()
43 sAntScores.put(NetworkDetail.Ant.Private, 4); in sAntScores.put()
44 sAntScores.put(NetworkDetail.Ant.Personal, 2); in sAntScores.put()
45 sAntScores.put(NetworkDetail.Ant.EmergencyOnly, 2); in sAntScores.put()
46 sAntScores.put(NetworkDetail.Ant.Wildcard, 1); in sAntScores.put()
47 sAntScores.put(NetworkDetail.Ant.TestOrExperimental, 0); in sAntScores.put()
107 score += getNetworkDetail().getHSRelease() != NetworkDetail.HSRelease.Unknown ? 50 : 0; in PasspointMatchInfo()
[all …]
DANQPData.java36 private final NetworkDetail mNetwork;
43 public ANQPData(Clock clock, NetworkDetail network, in ANQPData()
62 public ANQPData(Clock clock, NetworkDetail network, ANQPData existing) { in ANQPData()
98 public NetworkDetail getNetwork() { in getNetwork()
120 protected boolean isValid(NetworkDetail nwk) { in isValid()
DAnqpCache.java58 private static CacheKey buildKey(NetworkDetail network, boolean standardESS) { in buildKey()
111 return "HESSID:" + NetworkDetail.toMACString(mHESSID); in toString()
114 return NetworkDetail.toMACString(mBSSID) + in toString()
123 public List<Constants.ANQPElementType> initiate(NetworkDetail network, in initiate()
143 public void update(NetworkDetail network, in update()
162 public ANQPData getEntry(NetworkDetail network) { in getEntry()
DNetworkDetail.java25 public class NetworkDetail { class
125 public NetworkDetail(String bssid, ScanResult.InformationElement[] infoElements, in NetworkDetail() method in NetworkDetail
319 …private NetworkDetail(NetworkDetail base, Map<Constants.ANQPElementType, ANQPElement> anqpElements… in NetworkDetail() method in NetworkDetail
346 public NetworkDetail complete(Map<Constants.ANQPElementType, ANQPElement> anqpElements) { in complete()
347 return new NetworkDetail(this, anqpElements); in complete()
486 NetworkDetail that = (NetworkDetail)thatObject; in equals()
DSupplicantBridge.java206 private static String escapeSSID(NetworkDetail networkDetail) { in escapeSSID()
240 private static String buildWPSQueryRequest(NetworkDetail networkDetail, in buildWPSQueryRequest()
278 private static List<String> getWPSNetCommands(String netID, NetworkDetail networkDetail, in getWPSNetCommands()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DScanDetail.java28 import com.android.server.wifi.hotspot2.NetworkDetail;
41 private volatile NetworkDetail mNetworkDetail;
45 public ScanDetail(NetworkDetail networkDetail, WifiSsid wifiSsid, String bssid, in ScanDetail()
78 public ScanDetail(ScanResult scanResult, NetworkDetail networkDetail, in ScanDetail()
97 public void updateResults(NetworkDetail networkDetail, int level, WifiSsid wssid, String ssid, in updateResults()
156 public NetworkDetail getNetworkDetail() { in getNetworkDetail()
172 NetworkDetail networkDetail = mNetworkDetail; in toKeyString()
DWifiMetrics.java25 import com.android.server.wifi.hotspot2.NetworkDetail;
386 NetworkDetail networkDetail = scanDetail.getNetworkDetail(); in setConnectionScanDetail()
431 private void updateMetricsFromNetworkDetail(NetworkDetail networkDetail) { in updateMetricsFromNetworkDetail()
DWifiConfigManager.java68 import com.android.server.wifi.hotspot2.NetworkDetail;
2472 NetworkDetail networkDetail = scanDetail.getNetworkDetail();
2486 NetworkDetail networkDetail = scanDetail.getNetworkDetail();
2499 NetworkDetail networkDetail = scanDetail.getNetworkDetail();
2537 public Map<Constants.ANQPElementType, ANQPElement> getANQPData(NetworkDetail network) {
2567 NetworkDetail networkDetail = scanDetail.getNetworkDetail();
2750 NetworkDetail networkDetail = scanDetail.getNetworkDetail();
DWifiNative.java50 import com.android.server.wifi.hotspot2.NetworkDetail;
709 NetworkDetail networkDetail = new NetworkDetail(bssid, in getScanResults()
DWifiStateMachine.java108 import com.android.server.wifi.hotspot2.NetworkDetail;
3074 NetworkDetail networkDetail = resultDetail.getNetworkDetail(); in setScanResults()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DScanDetailUtil.java22 import com.android.server.wifi.hotspot2.NetworkDetail;
36 NetworkDetail networkDetail = new NetworkDetail(scanResult.BSSID, in toScanDetail()
DInformationElementUtil.java25 import com.android.server.wifi.hotspot2.NetworkDetail;
161 public NetworkDetail.Ant ant = null;
173 ant = NetworkDetail.Ant.values()[anOptions & 0x0f]; in from()
242 public NetworkDetail.HSRelease hsRelease = null;
251 hsRelease = NetworkDetail.HSRelease.R1; in from()
254 hsRelease = NetworkDetail.HSRelease.R2; in from()
257 hsRelease = NetworkDetail.HSRelease.Unknown; in from()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DAnqpCacheTest.java34 import com.android.server.wifi.hotspot2.NetworkDetail;
67 NetworkDetail nd = new NetworkDetail(bssid, ie, in NetworkDescription()
168 NetworkDetail nd = data.getNetwork(); in basicAddQueryAndExpiry()
199 NetworkDetail nd = data.getNetwork(); in basicAddQueryAndExpiry()
DScanResults.java23 import com.android.server.wifi.hotspot2.NetworkDetail;
118 NetworkDetail nd = new NetworkDetail(bssid, ie, anqpLines, freq); in generateNativeResults()
DWifiMetricsTest.java27 import com.android.server.wifi.hotspot2.NetworkDetail;
373 NetworkDetail networkDetail = mock(NetworkDetail.class); in testScanDetailAndWifiConfigurationUsage()
DWifiStateMachineTest.java69 import com.android.server.wifi.hotspot2.NetworkDetail;
282 NetworkDetail nd = new NetworkDetail(sBSSID, ie, new ArrayList<String>(), sFreq); in getGoogleGuestScanDetail()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
DANQPFactory.java3 import com.android.server.wifi.hotspot2.NetworkDetail;
57 public static List<Constants.ANQPElementType> buildQueryList(NetworkDetail networkDetail, in buildQueryList()
66 boolean includeOSU = osu && networkDetail.getHSRelease() == NetworkDetail.HSRelease.R2; in buildQueryList()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
DHomeSP.java14 import com.android.server.wifi.hotspot2.NetworkDetail;
142 public PasspointMatch match(NetworkDetail networkDetail, in match()
184 public PasspointMatch matchSP(NetworkDetail networkDetail, in matchSP()