Home
last modified time | relevance | path

Searched refs:EID_SSID (Results 1 – 8 of 8) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DScanResultUtilTest.java52 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in convertScanResult()
68 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in convertScanResultWithAnqpLines()
83 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in convertScanResultWithoutWifiSsid()
145 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testPskSha256SaeTransitionModeCheck()
164 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testPskSaeTransitionModeCheck()
183 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testPskNotInTransitionModeCheck()
202 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testSaeNotInTransitionModeCheck()
222 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testFilsSha256AkmSupportedNetwork()
242 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testFilsSha384AkmSupportedNetwork()
DInformationElementUtilTest.java150 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id); in parseInformationElements_withSingleElement()
173 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id); in parseInformationElements_withExtraPadding()
196 assertEquals("Parsed result should be a ssid.", InformationElement.EID_SSID, results[0].id); in parseInformationElements_secondElementInvalidLength()
217 InformationElement.EID_SSID, results[0].id); in parseInformationElements_twoElements()
247 assertEquals("Second element should be a ssid", InformationElement.EID_SSID, results[1].id); in parseInformationElements_firstElementZeroLength()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DScanResults.java86 ie.id = ScanResult.InformationElement.EID_SSID; in generateSsidIe()
DClientModeImplTest.java4508 createIE(ScanResult.InformationElement.EID_SSID, in testNoWpa3UpgradeWithPskCandidate()
4558 createIE(ScanResult.InformationElement.EID_SSID, in testWpa3UpgradeWithSaeCandidate()
4613 ScanResult.InformationElement ieSae = createIE(ScanResult.InformationElement.EID_SSID, in testWpa3UpgradeWithSaeCandidateAndPskApInRange()
4625 ScanResult.InformationElement iePsk = createIE(ScanResult.InformationElement.EID_SSID, in testWpa3UpgradeWithSaeCandidateAndPskApInRange()
4685 ScanResult.InformationElement ieSae = createIE(ScanResult.InformationElement.EID_SSID, in testWpa3UpgradeWithNoCandidate()
4814 ScanResult.InformationElement ie = createIE(ScanResult.InformationElement.EID_SSID, in setupFilsEnabledApInScanResult()
DWifiConnectivityManagerTest.java314 scanResults[0].informationElements[0].id = InformationElement.EID_SSID; in mockWifiScanner()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java56 if (elementLength > data.remaining() || (eid == InformationElement.EID_SSID in parseInformationElements()
63 if (eid == InformationElement.EID_SSID) { in parseInformationElements()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java185 case ScanResult.InformationElement.EID_SSID: in NetworkDetail()
/frameworks/base/wifi/java/android/net/wifi/
DScanResult.java716 public static final int EID_SSID = 0; field in ScanResult.InformationElement