Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java81 InformationElementUtil.parseInformationElements(emptyBytes); in parseInformationElements_withEmptyByteArray()
93 InformationElementUtil.parseInformationElements(nullBytes); in parseInformationElements_withNullBytes()
109 InformationElementUtil.parseInformationElements(ssidBytes); in parseInformationElements_withSingleElement()
132 InformationElementUtil.parseInformationElements(ssidBytesWithPadding); in parseInformationElements_withExtraPadding()
155 InformationElementUtil.parseInformationElements(twoTagsSecondInvalidBytes); in parseInformationElements_secondElementInvalidLength()
175 InformationElementUtil.parseInformationElements(twoValidTagsBytes); in parseInformationElements_twoElements()
202 InformationElementUtil.parseInformationElements(zeroLengthTagWithSSIDBytes); in parseInformationElements_firstElementZeroLength()
232 InformationElementUtil.parseInformationElements(invalidLengthTagWithSSIDBytes); in parseInformationElements_firstElementWrongLength()
261 String result = InformationElementUtil.Capabilities.buildCapabilities(ies, beaconCap); in buildCapabilities_rsnElement()
287 String result = InformationElementUtil.Capabilities.buildCapabilities(ies, beaconCap); in buildCapabilities_wpa1Element()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java13 import com.android.server.wifi.util.InformationElementUtil;
121 private final InformationElementUtil.ExtendedCapabilities mExtendedCapabilities;
136 InformationElementUtil.BssLoad bssLoad = new InformationElementUtil.BssLoad(); in NetworkDetail()
138 InformationElementUtil.Interworking interworking = in NetworkDetail()
139 new InformationElementUtil.Interworking(); in NetworkDetail()
141 InformationElementUtil.RoamingConsortium roamingConsortium = in NetworkDetail()
142 new InformationElementUtil.RoamingConsortium(); in NetworkDetail()
144 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in NetworkDetail()
146 InformationElementUtil.HtOperation htOperation = new InformationElementUtil.HtOperation(); in NetworkDetail()
147 InformationElementUtil.VhtOperation vhtOperation = in NetworkDetail()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiMetrics.java26 import com.android.server.wifi.util.InformationElementUtil;
439 case InformationElementUtil.WifiMode.MODE_UNDEFINED: in updateMetricsFromNetworkDetail()
442 case InformationElementUtil.WifiMode.MODE_11A: in updateMetricsFromNetworkDetail()
445 case InformationElementUtil.WifiMode.MODE_11B: in updateMetricsFromNetworkDetail()
448 case InformationElementUtil.WifiMode.MODE_11G: in updateMetricsFromNetworkDetail()
451 case InformationElementUtil.WifiMode.MODE_11N: in updateMetricsFromNetworkDetail()
454 case InformationElementUtil.WifiMode.MODE_11AC : in updateMetricsFromNetworkDetail()
DWifiNative.java54 import com.android.server.wifi.util.InformationElementUtil;
706 InformationElementUtil.parseInformationElements( in getScanResults()
1829 InformationElementUtil.HtOperation htOperation = new InformationElementUtil.HtOperation(); in populateScanResult()
1830 InformationElementUtil.VhtOperation vhtOperation = in populateScanResult()
1831 new InformationElementUtil.VhtOperation(); in populateScanResult()
1832 InformationElementUtil.ExtendedCapabilities extendedCaps = in populateScanResult()
1833 new InformationElementUtil.ExtendedCapabilities(); in populateScanResult()
1836 InformationElementUtil.parseInformationElements(result.bytes); in populateScanResult()
1871 result.capabilities = InformationElementUtil.Capabilities.buildCapabilities(elements, in populateScanResult()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java34 public class InformationElementUtil { class