Home
last modified time | relevance | path

Searched refs:ies (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java260 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_rsnElement() local
267 capabilities.from(ies, beaconCap); in buildCapabilities_rsnElement()
286 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_malformedRsnElement() local
293 capabilities.from(ies, beaconCap); in buildCapabilities_malformedRsnElement()
315 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_wpa1Element() local
321 capabilities.from(ies, beaconCap); in buildCapabilities_wpa1Element()
339 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_malformedWpa1Element() local
345 capabilities.from(ies, beaconCap); in buildCapabilities_malformedWpa1Element()
376 InformationElement[] ies = new InformationElement[] { ieWpa, ieRsn }; in buildCapabilities_rsnAndWpaElement() local
383 capabilities.from(ies, beaconCap); in buildCapabilities_rsnAndWpaElement()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java73 public static RoamingConsortium getRoamingConsortiumIE(InformationElement[] ies) { in getRoamingConsortiumIE() argument
75 if (ies != null) { in getRoamingConsortiumIE()
76 for (InformationElement ie : ies) { in getRoamingConsortiumIE()
95 public static Vsa getHS2VendorSpecificIE(InformationElement[] ies) { in getHS2VendorSpecificIE() argument
97 if (ies != null) { in getHS2VendorSpecificIE()
98 for (InformationElement ie : ies) { in getHS2VendorSpecificIE()
117 public static Interworking getInterworkingIE(InformationElement[] ies) { in getInterworkingIE() argument
119 if (ies != null) { in getInterworkingIE()
120 for (InformationElement ie : ies) { in getInterworkingIE()
650 public void from(InformationElement[] ies, BitSet beaconCap) { in from() argument
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java536 ScanResult.InformationElement[] ies = in getScanResults() local
540 capabilities.from(ies, result.capability); in getScanResults()
544 networkDetail = new NetworkDetail(bssid, ies, null, result.frequency); in getScanResults()
551 result.signalMbm / 100, result.frequency, result.tsf, ies, null); in getScanResults()
DWifiVendorHal.java2704 private static byte[] hidlIeArrayToFrameworkIeBlob(ArrayList<WifiInformationElement> ies) { in hidlIeArrayToFrameworkIeBlob() argument
2705 if (ies == null || ies.isEmpty()) return new byte[0]; in hidlIeArrayToFrameworkIeBlob()
2707 for (WifiInformationElement ie : ies) { in hidlIeArrayToFrameworkIeBlob()