Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java34 import com.android.server.wifi.util.InformationElementUtil.ApType6GHz;
35 import com.android.server.wifi.util.InformationElementUtil.EhtOperation;
36 import com.android.server.wifi.util.InformationElementUtil.HeOperation;
37 import com.android.server.wifi.util.InformationElementUtil.HtOperation;
38 import com.android.server.wifi.util.InformationElementUtil.VhtOperation;
96 InformationElementUtil.parseInformationElements(emptyBytes); in parseInformationElements_withEmptyByteArray()
108 InformationElementUtil.parseInformationElements(nullBytes); in parseInformationElements_withNullBytes()
120 InformationElementUtil.parseInformationElements(bytes); in parseInformationElements_withZeroLengthAndExtensionId()
135 InformationElementUtil.parseInformationElements(bytes); in parseInformationElements_withZeroLengthAndExtensionIdAfterAnotherIe()
153 InformationElementUtil.parseInformationElements(ssidBytes); in parseInformationElements_withSingleElement()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java11 import com.android.server.wifi.util.InformationElementUtil;
120 private final InformationElementUtil.ExtendedCapabilities mExtendedCapabilities;
162 private final InformationElementUtil.ApType6GHz mApType6GHz;
186 InformationElementUtil.BssLoad bssLoad = new InformationElementUtil.BssLoad(); in NetworkDetail()
188 InformationElementUtil.Interworking interworking = in NetworkDetail()
189 new InformationElementUtil.Interworking(); in NetworkDetail()
191 InformationElementUtil.RoamingConsortium roamingConsortium = in NetworkDetail()
192 new InformationElementUtil.RoamingConsortium(); in NetworkDetail()
194 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in NetworkDetail()
196 InformationElementUtil.HtOperation htOperation = new InformationElementUtil.HtOperation(); in NetworkDetail()
[all …]
DPasspointManager.java67 import com.android.server.wifi.util.InformationElementUtil;
913 InformationElementUtil.RoamingConsortium roamingConsortium = in getAllMatchedProviders()
914 InformationElementUtil.getRoamingConsortiumIE(scanResult.informationElements); in getAllMatchedProviders()
915 InformationElementUtil.Vsa vsa = InformationElementUtil.getHS2VendorSpecificIE( in getAllMatchedProviders()
1042 InformationElementUtil.Vsa vsa = in getANQPElements()
1043 InformationElementUtil.getHS2VendorSpecificIE(scanResult.informationElements); in getANQPElements()
1445 InformationElementUtil.getRoamingConsortiumIE(scanResult.informationElements), in getMatchingScanResults()
1533 InformationElementUtil.Vsa vsa = InformationElementUtil.getHS2VendorSpecificIE( in requestVenueUrlAnqpElement()
1560 InformationElementUtil.Vsa vsa = InformationElementUtil.getHS2VendorSpecificIE( in getVenueUrl()
DPasspointNetworkNominateHelper.java39 import com.android.server.wifi.util.InformationElementUtil;
378 pw.println(InformationElementUtil.getRoamingConsortiumIE( in dump()
DPasspointProvider.java56 import com.android.server.wifi.util.InformationElementUtil.RoamingConsortium;
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointManagerTest.java112 import com.android.server.wifi.util.InformationElementUtil;
113 import com.android.server.wifi.util.InformationElementUtil.RoamingConsortium;
1064 InformationElementUtil.class).startMocking(); in matchProviderWithAnqpCacheMissed()
1069 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in matchProviderWithAnqpCacheMissed()
1071 when(InformationElementUtil.getHS2VendorSpecificIE(isNull())).thenReturn(vsa); in matchProviderWithAnqpCacheMissed()
1072 InformationElementUtil.RoamingConsortium roamingConsortium = in matchProviderWithAnqpCacheMissed()
1073 new InformationElementUtil.RoamingConsortium(); in matchProviderWithAnqpCacheMissed()
1075 when(InformationElementUtil.getRoamingConsortiumIE(isNull())) in matchProviderWithAnqpCacheMissed()
1193 InformationElementUtil.class).startMocking(); in getAllMatchingProvidersUpdatedConfigWithFullImsiSimCredential()
1201 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in getAllMatchingProvidersUpdatedConfigWithFullImsiSimCredential()
[all …]
DPasspointProviderTest.java62 import com.android.server.wifi.util.InformationElementUtil.RoamingConsortium;
/packages/modules/Wifi/service/java/com/android/server/wifi/
DThroughputPredictor.java18 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.INVALID;
19 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.MAX_CHANNEL_UTILIZATION;
20 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.MIN_CHANNEL_UTILIZATION;
DWifiNative.java85 import com.android.server.wifi.util.InformationElementUtil;
206 InformationElementUtil.Capabilities.akmToScanResultKeyManagementScheme( in initializeUnknownAkmMapping()
2086InformationElementUtil.parseInformationElements(result.getInformationElements()); in convertNativeScanResults()
2087 InformationElementUtil.Capabilities capabilities = in convertNativeScanResults()
2088 new InformationElementUtil.Capabilities(); in convertNativeScanResults()
2141 case InformationElementUtil.WifiMode.MODE_11A: in wifiModeToWifiStandard()
2142 case InformationElementUtil.WifiMode.MODE_11B: in wifiModeToWifiStandard()
2143 case InformationElementUtil.WifiMode.MODE_11G: in wifiModeToWifiStandard()
2145 case InformationElementUtil.WifiMode.MODE_11N: in wifiModeToWifiStandard()
2147 case InformationElementUtil.WifiMode.MODE_11AC: in wifiModeToWifiStandard()
[all …]
DWifiDataStall.java19 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.CHANNEL_UTILIZATION_SCALE;
37 import com.android.server.wifi.util.InformationElementUtil.BssLoad;
DWifiChannelUtilization.java31 import com.android.server.wifi.util.InformationElementUtil.BssLoad;
DDeviceConfigFacade.java19 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.CHANNEL_UTILIZATION_SCALE;
DWifiMetrics.java133 import com.android.server.wifi.util.InformationElementUtil;
134 import com.android.server.wifi.util.InformationElementUtil.ApType6GHz;
135 import com.android.server.wifi.util.InformationElementUtil.WifiMode;
2846 case InformationElementUtil.WifiMode.MODE_UNDEFINED: in updateMetricsFromNetworkDetail()
2849 case InformationElementUtil.WifiMode.MODE_11A: in updateMetricsFromNetworkDetail()
2852 case InformationElementUtil.WifiMode.MODE_11B: in updateMetricsFromNetworkDetail()
2856 case InformationElementUtil.WifiMode.MODE_11G: in updateMetricsFromNetworkDetail()
2859 case InformationElementUtil.WifiMode.MODE_11N: in updateMetricsFromNetworkDetail()
2862 case InformationElementUtil.WifiMode.MODE_11AC : in updateMetricsFromNetworkDetail()
2865 case InformationElementUtil.WifiMode.MODE_11AX : in updateMetricsFromNetworkDetail()
[all …]
DWifiNetworkSelector.java56 import com.android.server.wifi.util.InformationElementUtil.BssLoad;
DClientModeImpl.java157 import com.android.server.wifi.util.InformationElementUtil;
8345 List<InformationElementUtil.Vsa> vsas = InformationElementUtil.getVendorSpecificIE( in getOuiInternal()
8347 for (InformationElementUtil.Vsa vsa : vsas) { in getOuiInternal()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DThroughputPredictorTest.java19 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.INVALID;
20 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.MAX_CHANNEL_UTILIZATION;
21 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.MIN_CHANNEL_UTILIZATION;
DWifiChannelUtilizationTest.java26 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.INVALID;
27 import static com.android.server.wifi.util.InformationElementUtil.BssLoad.MAX_CHANNEL_UTILIZATION;
38 import com.android.server.wifi.util.InformationElementUtil.BssLoad;
DWifiNetworkSelectorTestUtil.java45 import com.android.server.wifi.util.InformationElementUtil;
250 InformationElementUtil.parseInformationElements(iesByteStream[index]); in buildScanDetailsWithNetworkDetails()
DSoftApStoreDataTest.java46 import com.android.server.wifi.util.InformationElementUtil;
414 InformationElementUtil.parseInformationElements( in serializeSoftAp()
465 InformationElementUtil.parseInformationElements( in serializeSoftApNonUtf8()
DWifiMetricsTest.java140 import com.android.server.wifi.util.InformationElementUtil;
622 .thenReturn(InformationElementUtil.WifiMode.MODE_11AX); in buildMockScanDetail()
7254 InformationElementUtil.ApType6GHz.AP_TYPE_6GHZ_STANDARD_POWER); in testApCapabilitiesReported()
7266 when(networkDetail.getWifiMode()).thenReturn(InformationElementUtil.WifiMode.MODE_11BE); in testApCapabilitiesReported()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DXmlUtil.java2033 InformationElementUtil.toHexString(e)); in writeVendorElementsSetToXml()
2056 InformationElementUtil.parseInformationElements((String) value); in parseVendorElementsFromXml()
DInformationElementUtil.java49 public class InformationElementUtil { class
/packages/modules/Wifi/service/tests/wifitests/
DAndroid.bp1214 "com.android.server.wifi.util.InformationElementUtil",
1215 "com.android.server.wifi.util.InformationElementUtil$*",
1216 "com.android.server.wifi.util.InformationElementUtil.**",
/packages/modules/Wifi/service/proto/src/
Dmetrics.proto2688 // see {@link com.android.server.wifi.util.InformationElementUtil}