HomeSort by relevance Sort by last modified time
    Searched refs:anqpElements (Results 1 - 10 of 10) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
ANQPData.java 42 public ANQPData(Clock clock, Map<Constants.ANQPElementType, ANQPElement> anqpElements) {
45 if (anqpElements != null) {
46 mANQPElements.putAll(anqpElements);
PasspointNetworkScore.java 148 Map<ANQPElementType, ANQPElement> anqpElements, boolean isActiveNetwork) {
161 if (anqpElements != null) {
163 (HSWanMetricsElement) anqpElements.get(ANQPElementType.HSWANMetrics);
171 anqpElements.get(ANQPElementType.ANQPIPAddrAvailability);
AnqpCache.java 53 * @param anqpElements The ANQP elements from the AP
56 Map<Constants.ANQPElementType, ANQPElement> anqpElements) {
57 ANQPData data = new ANQPData(mClock, anqpElements);
PasspointManager.java 117 Map<Constants.ANQPElementType, ANQPElement> anqpElements) {
120 mAnqpRequestManager.onRequestCompleted(bssid, anqpElements != null);
121 if (anqpElements == null || anqpKey == null) {
128 mAnqpCache.addEntry(anqpKey, anqpElements);
608 Map<Constants.ANQPElementType, ANQPElement> anqpElements = getANQPElements(scanResult);
609 if (!anqpElements.containsKey(Constants.ANQPElementType.HSOSUProviders)) {
614 (HSOsuProvidersElement) anqpElements.get(Constants.ANQPElementType.HSOSUProviders);
PasspointProvider.java 256 * @param anqpElements ANQP elements from the AP
260 public PasspointMatch match(Map<ANQPElementType, ANQPElement> anqpElements,
262 PasspointMatch providerMatch = matchProvider(anqpElements, roamingConsortium);
266 (NAIRealmElement) anqpElements.get(ANQPElementType.ANQPNAIRealm),
459 * @param anqpElements List of ANQP elements
463 private PasspointMatch matchProvider(Map<ANQPElementType, ANQPElement> anqpElements,
467 (DomainNameElement) anqpElements.get(ANQPElementType.ANQPDomName),
475 (RoamingConsortiumElement) anqpElements.get(ANQPElementType.ANQPRoamingConsortium),
494 (ThreeGPPNetworkElement) anqpElements.get(ANQPElementType.ANQP3GPPNetwork),
NetworkDetail.java 323 private NetworkDetail(NetworkDetail base, Map<Constants.ANQPElementType, ANQPElement> anqpElements) {
339 mANQPElements = anqpElements;
349 public NetworkDetail complete(Map<Constants.ANQPElementType, ANQPElement> anqpElements) {
350 return new NetworkDetail(this, anqpElements);
PasspointEventHandler.java 46 * Invoked on received of ANQP response. |anqpElements| will be null on failure.
48 * @param anqpElements ANQP elements to be queried
51 Map<Constants.ANQPElementType, ANQPElement> anqpElements);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java 87 * @param anqpElements Map<Constants.ANQPElementType, ANQPElement>
89 public void propagateANQPInfo(Map<Constants.ANQPElementType, ANQPElement> anqpElements) {
90 if (anqpElements.isEmpty()) {
93 mNetworkDetail = mNetworkDetail.complete(anqpElements);
94 HSFriendlyNameElement fne = (HSFriendlyNameElement) anqpElements.get(
101 (((VenueNameElement) anqpElements.get(
107 RawByteElement osuProviders = (RawByteElement) anqpElements
110 mScanResult.anqpElements = new AnqpInformationElement[1];
111 mScanResult.anqpElements[0] =
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 436 public AnqpInformationElement[] anqpElements;
469 this.anqpElements = new AnqpInformationElement[1];
470 this.anqpElements[0] =
560 anqpElements = source.anqpElements;
680 if (anqpElements != null) {
681 dest.writeInt(anqpElements.length);
682 for (AnqpInformationElement element : anqpElements) {
760 sr.anqpElements = new AnqpInformationElement[n];
767 sr.anqpElements[i]
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
PasspointNetworkScoreTest.java 51 public final Map<ANQPElementType, ANQPElement> anqpElements;
62 anqpElements = elements;
135 NetworkDetail.Ant.FreePublic /* networkType */, null /* anqpElements */,
145 NetworkDetail.Ant.FreePublic /* networkType */, null /* anqpElements */,
156 NetworkDetail.Ant.FreePublic /* networkType */, null /* anqpElements */,
167 NetworkDetail.Ant.Personal /* networkType */, null /* anqpElements */,
179 TEST_ANQP_WITH_WAN_PORT_UP /* anqpElements */,
191 TEST_ANQP_WITH_WAN_PORT_DOWN /* anqpElements */,
204 TEST_ANQP_WITH_WAN_PORT_CAPPED /* anqpElements */,
217 TEST_ANQP_WITH_UNRESTRICTED_IP /* anqpElements */,
    [all...]

Completed in 310 milliseconds