Searched defs:ANQPNetworkKey (Results 1 - 1 of 1) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DANQPNetworkKey.java31 public class ANQPNetworkKey { class
37 public ANQPNetworkKey(String ssid, long bssid, long hessid, int anqpDomainID) { method in class:ANQPNetworkKey
57 * @return {@link ANQPNetworkKey}
59 public static ANQPNetworkKey buildKey(String ssid, long bssid, long hessid, int anqpDomainId) {
61 return new ANQPNetworkKey(ssid, bssid, 0, 0);
63 return new ANQPNetworkKey(null, 0, hessid, anqpDomainId);
65 return new ANQPNetworkKey(ssid, 0, 0, anqpDomainId);
84 if (!(thatObject instanceof ANQPNetworkKey)) {
87 ANQPNetworkKey that = (ANQPNetworkKey) thatObjec
[all...]

Completed in 54 milliseconds