Home
last modified time | relevance | path

Searched refs:idExt (Results 1 – 10 of 10) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java296 assertEquals("First result should have idExt = 0x01", 0x01, results[0].idExt); in parseInformationElementWithExtensionId()
446 results[0].idExt); in parseInformationElementWithTwoLevelFragmentation()
1785 ie.idExt = InformationElement.EID_EXT_HE_OPERATION; in getHeOperationElement80Mhz()
1830 ie.idExt = InformationElement.EID_EXT_HE_OPERATION; in getHeOperationElement160Mhz()
1875 ie.idExt = InformationElement.EID_EXT_HE_OPERATION; in getHeOperationElementNo6GHzNoVht()
1914 ie.idExt = InformationElement.EID_EXT_HE_OPERATION; in getHeOperationElementNo6GHzWithVht()
1956 ie.idExt = InformationElement.EID_EXT_HE_OPERATION; in testHeOperationMisc()
2054 ie.idExt = InformationElement.EID_EXT_HE_CAPABILITIES; in getMaxNumberSpatialStreamsWithHeCapabilitiesIE()
2082 ie.idExt = InformationElement.EID_EXT_HE_CAPABILITIES; in testTwtHeCapabilities()
2312 ie.idExt = InformationElement.EID_EXT_MULTI_LINK; in parseMultiLinkIeNoLinkInfo()
[all …]
/packages/modules/Wifi/framework/java/android/net/wifi/
DScanResult.java1285 public int idExt; field in ScanResult.InformationElement
1302 public InformationElement(int id, int idExt, @NonNull byte[] bytes) { in InformationElement() argument
1304 this.idExt = idExt; in InformationElement()
1310 this.idExt = rhs.idExt; in InformationElement()
1327 return idExt; in getIdExt()
1346 dest.writeInt(idExt); in writeToParcel()
1356 informationElement.idExt = in.readInt();
1377 && idExt == thatIE.idExt in equals()
1386 return Objects.hash(id, idExt, Arrays.hashCode(bytes)); in hashCode()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
DNetworkDetailTest.java86 ies[1].idExt = InformationElement.EID_EXT_MULTI_LINK; in verifyFromScanResultRnrMultiIeNoLinksIe()
125 ies[1].idExt = InformationElement.EID_EXT_MULTI_LINK; in verifyFromScanResultRnrMultiIeWithLinks()
168 ies[1].idExt = InformationElement.EID_EXT_MULTI_LINK; in verifyFromScanResultRnrNoLinksMultiIeNoLinksIe()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiInfoTest.java199 assertEquals(informationElements.get(0).idExt, in assertNoRedaction()
200 info.getInformationElements().get(0).idExt); in assertNoRedaction()
205 assertEquals(informationElements.get(1).idExt, in assertNoRedaction()
206 info.getInformationElements().get(1).idExt); in assertNoRedaction()
828 informationElement.idExt = 0; in generateIes()
834 informationElement.idExt = ScanResult.InformationElement.EID_EXT_HE_OPERATION; in generateIes()
DScanResultTest.java243 writeScanResult.informationElements[0].idExt = 0; in verifyScanResultParcelWithInformationElement()
247 writeScanResult.informationElements[1].idExt = InformationElement.EID_EXT_HE_OPERATION; in verifyScanResultParcelWithInformationElement()
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java133 sb.append(HexEncoding.encode(new byte[]{(byte) e.idExt})); in toHexString()
201 ie.idExt = eidExt; in parseInformationElements()
770 || ie.idExt != InformationElement.EID_EXT_HE_OPERATION) { in from()
951 || ie.idExt != InformationElement.EID_EXT_EHT_OPERATION) { in from()
1141 || ie.idExt != InformationElement.EID_EXT_HE_CAPABILITIES) { in from()
1216 || ie.idExt != InformationElement.EID_EXT_EHT_CAPABILITIES) { in from()
1461 || ie.idExt != InformationElement.EID_EXT_MULTI_LINK) { in from()
2258 ie.id, ie.idExt, ie.bytes); in from()
/packages/modules/Wifi/framework/java/android/net/wifi/rtt/
DResponderConfig.java448 } else if (ie.id == EID_EXTENSION_PRESENT && ie.idExt == EID_EXT_HE_CAPABILITIES) { in fromScanResult()
450 } else if (ie.id == EID_EXTENSION_PRESENT && ie.idExt == EID_EXT_EHT_CAPABILITIES) { in fromScanResult()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/p2p/
DSupplicantP2pIfaceCallbackAidlImplTest.java1322 assertEquals(a.get(i).idExt, b.get(i).idExt); in assertInformationElementListEquals()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java282 switch(ie.idExt) { in NetworkDetail()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/rtt/
DWifiRttManagerTest.java635 heCap.idExt = ScanResult.InformationElement.EID_EXT_HE_CAPABILITIES; in testResponderPreambleSelection()