Home
last modified time | relevance | path

Searched refs:vsa (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/wifi/tests/src/android/net/wifi/rtt/
DWifiRttManagerTest.java353 ScanResult.InformationElement vsa = new ScanResult.InformationElement(); in testResponderPreambleSelection() local
354 vsa.id = ScanResult.InformationElement.EID_VSA; in testResponderPreambleSelection()
378 scan.informationElements[0] = vsa; in testResponderPreambleSelection()
379 scan.informationElements[1] = vsa; in testResponderPreambleSelection()
386 scan.informationElements[0] = vsa; in testResponderPreambleSelection()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java141 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in NetworkDetail() local
184 vsa.from(ie); in NetworkDetail()
253 mHSRelease = vsa.hsRelease; in NetworkDetail()
254 mAnqpDomainID = vsa.anqpDomainID; in NetworkDetail()
DPasspointManager.java489 InformationElementUtil.Vsa vsa = InformationElementUtil.getHS2VendorSpecificIE( in findEapMethodFromNAIRealmMatchedWithCarrier() local
499 vsa.anqpDomainID); in findEapMethodFromNAIRealmMatchedWithCarrier()
505 vsa.hsRelease == NetworkDetail.HSRelease.R2); in findEapMethodFromNAIRealmMatchedWithCarrier()
789 InformationElementUtil.Vsa vsa = InformationElementUtil.getHS2VendorSpecificIE( in getAllMatchedProviders() local
801 vsa.anqpDomainID); in getAllMatchedProviders()
806 vsa.hsRelease == NetworkDetail.HSRelease.R2); in getAllMatchedProviders()
905 InformationElementUtil.Vsa vsa = in getANQPElements() local
917 scanResult.SSID, bssid, scanResult.hessid, vsa.anqpDomainID)); in getANQPElements()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointManagerTest.java976 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in getAllMatchingFqdnsForScanResults() local
977 vsa.anqpDomainID = TEST_ANQP_DOMAIN_ID2; in getAllMatchingFqdnsForScanResults()
980 when(InformationElementUtil.getHS2VendorSpecificIE(isNull())).thenReturn(vsa); in getAllMatchingFqdnsForScanResults()
1202 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in getMatchingOsuProvidersWithMatch() local
1205 vsa.anqpDomainID = TEST_ANQP_DOMAIN_ID; in getMatchingOsuProvidersWithMatch()
1206 when(InformationElementUtil.getHS2VendorSpecificIE(isNull())).thenReturn(vsa); in getMatchingOsuProvidersWithMatch()
1212 vsa.anqpDomainID = TEST_ANQP_DOMAIN_ID2; in getMatchingOsuProvidersWithMatch()
1213 when(InformationElementUtil.getHS2VendorSpecificIE(isNull())).thenReturn(vsa); in getMatchingOsuProvidersWithMatch()
1737 InformationElementUtil.Vsa vsa = new InformationElementUtil.Vsa(); in verifyFindEapMethodFromNAIRealmMatchedWithCarrierWithMatch() local
1740 vsa.anqpDomainID = TEST_ANQP_DOMAIN_ID; in verifyFindEapMethodFromNAIRealmMatchedWithCarrierWithMatch()
[all …]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DInformationElementUtilTest.java929 InformationElementUtil.Vsa vsa = in getHS2VendorSpecificIE() local
931 assertEquals(NetworkDetail.HSRelease.R2, vsa.hsRelease); in getHS2VendorSpecificIE()
932 assertEquals(0x2211, vsa.anqpDomainID); in getHS2VendorSpecificIE()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java96 Vsa vsa = new Vsa(); in getHS2VendorSpecificIE() local
101 vsa.from(ie); in getHS2VendorSpecificIE()
108 return vsa; in getHS2VendorSpecificIE()