Searched refs:anqpElements (Results 1 – 8 of 8) sorted by relevance
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ScanDetail.java | 124 public void propagateANQPInfo(Map<Constants.ANQPElementType, ANQPElement> anqpElements) { in propagateANQPInfo() argument 125 if (anqpElements.isEmpty()) { in propagateANQPInfo() 128 mNetworkDetail = mNetworkDetail.complete(anqpElements); in propagateANQPInfo() 129 HSFriendlyNameElement fne = (HSFriendlyNameElement) anqpElements.get( in propagateANQPInfo() 136 (((VenueNameElement) anqpElements.get( in propagateANQPInfo() 142 RawByteElement osuProviders = (RawByteElement) anqpElements in propagateANQPInfo() 145 mScanResult.anqpElements = new AnqpInformationElement[1]; in propagateANQPInfo() 146 mScanResult.anqpElements[0] = in propagateANQPInfo()
|
D | WifiConfigManager.java | 312 Map<Constants.ANQPElementType, ANQPElement> anqpElements) { in notifyANQPResponse() argument 313 updateAnqpCache(scanDetail, anqpElements); in notifyANQPResponse() 314 if (anqpElements == null || anqpElements.isEmpty()) { in notifyANQPResponse() 317 scanDetail.propagateANQPInfo(anqpElements); in notifyANQPResponse() 978 Map<Constants.ANQPElementType, ANQPElement> anqpElements = in matchProviderWithCurrentNetwork() local 981 return homeSP.match(scanDetail.getNetworkDetail(), anqpElements, mSIMAccessor).ordinal(); in matchProviderWithCurrentNetwork() 2503 Map<Constants.ANQPElementType, ANQPElement> anqpElements = 2514 PasspointMatch match = homeSP.match(networkDetail, anqpElements, mSIMAccessor); 2566 Map<Constants.ANQPElementType, ANQPElement> anqpElements) { 2569 if (anqpElements == null) { [all …]
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | ScanResult.java | 350 public AnqpInformationElement[] anqpElements; field in ScanResult 361 this.anqpElements = new AnqpInformationElement[1]; in ScanResult() 362 this.anqpElements[0] = in ScanResult() 440 anqpElements = source.anqpElements; in ScanResult() 558 if (anqpElements != null) { in writeToParcel() 559 dest.writeInt(anqpElements.length); in writeToParcel() 560 for (AnqpInformationElement element : anqpElements) { in writeToParcel() 628 sr.anqpElements = new AnqpInformationElement[n]; 635 sr.anqpElements[i] =
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | ANQPData.java | 44 Map<Constants.ANQPElementType, ANQPElement> anqpElements) { in ANQPData() argument 48 mANQPElements = anqpElements != null ? new HashMap<>(anqpElements) : null; in ANQPData() 51 if (anqpElements == null) { in ANQPData()
|
D | AnqpCache.java | 144 Map<Constants.ANQPElementType, ANQPElement> anqpElements) { in update() argument 153 data.merge(anqpElements); in update() 156 data = new ANQPData(mClock, network, anqpElements); in update()
|
D | NetworkDetail.java | 319 …ivate NetworkDetail(NetworkDetail base, Map<Constants.ANQPElementType, ANQPElement> anqpElements) { in NetworkDetail() argument 336 mANQPElements = anqpElements; in NetworkDetail() 346 public NetworkDetail complete(Map<Constants.ANQPElementType, ANQPElement> anqpElements) { in complete() argument 347 return new NetworkDetail(this, anqpElements); in complete()
|
D | SupplicantBridge.java | 65 Map<Constants.ANQPElementType, ANQPElement> anqpElements); in notifyANQPResponse() argument
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
D | OSUCache.java | 82 AnqpInformationElement[] osuInfo = scanResult.anqpElements; in pushScanResults()
|