Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java261 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_rsnElement() local
268 capabilities.from(ies, beaconCap, false); in buildCapabilities_rsnElement()
287 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_malformedRsnElement() local
294 capabilities.from(ies, beaconCap, false); in buildCapabilities_malformedRsnElement()
316 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_wpa1Element() local
322 capabilities.from(ies, beaconCap, false); in buildCapabilities_wpa1Element()
340 InformationElement[] ies = new InformationElement[] { ie }; in buildCapabilities_malformedWpa1Element() local
346 capabilities.from(ies, beaconCap, false); in buildCapabilities_malformedWpa1Element()
377 InformationElement[] ies = new InformationElement[] { ieWpa, ieRsn }; in buildCapabilities_rsnAndWpaElement() local
384 capabilities.from(ies, beaconCap, false); 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()
671 public void from(InformationElement[] ies, BitSet beaconCap, boolean isOweSupported) { in from() argument
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java592 ScanResult.InformationElement[] ies = in getScanResults() local
596 capabilities.from(ies, result.capability, isEnhancedOpenSupported()); in getScanResults()
600 networkDetail = new NetworkDetail(bssid, ies, null, result.frequency); in getScanResults()
607 result.signalMbm / 100, result.frequency, result.tsf, ies, null); in getScanResults()
DWifiVendorHal.java2603 private static byte[] hidlIeArrayToFrameworkIeBlob(ArrayList<WifiInformationElement> ies) { in hidlIeArrayToFrameworkIeBlob() argument
2604 if (ies == null || ies.isEmpty()) return new byte[0]; in hidlIeArrayToFrameworkIeBlob()
2606 for (WifiInformationElement ie : ies) { in hidlIeArrayToFrameworkIeBlob()
DClientModeImpl.java5437 final List<ScanResultInfo.InformationElement> ies = in enter() local
5442 ies.add(scanResultInfoIe); in enter()
5445 scanResult.BSSID, ies); in enter()