Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DScanResultUtilTest.java49 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in convertScanResult()
65 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in convertScanResultWithAnqpLines()
80 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in convertScanResultWithoutWifiSsid()
132 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testPskSha256SaeTransitionModeCheck()
151 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testPskSaeTransitionModeCheck()
170 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testPskNotInTransitionModeCheck()
189 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8)) in testSaeNotInTransitionModeCheck()
DInformationElementUtilTest.java116 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id); in parseInformationElements_withSingleElement()
139 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id); in parseInformationElements_withExtraPadding()
162 assertEquals("Parsed result should be a ssid.", InformationElement.EID_SSID, results[0].id); in parseInformationElements_secondElementInvalidLength()
183 InformationElement.EID_SSID, results[0].id); in parseInformationElements_twoElements()
213 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.java85 ie.id = ScanResult.InformationElement.EID_SSID; in generateSsidIe()
DWifiConnectivityManagerTest.java243 scanResults[0].informationElements[0].id = InformationElement.EID_SSID; in mockWifiScanner()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DInformationElementUtil.java47 if (elementLength > data.remaining() || (eid == InformationElement.EID_SSID in parseInformationElements()
54 if (eid == InformationElement.EID_SSID) { in parseInformationElements()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DNetworkDetail.java165 case ScanResult.InformationElement.EID_SSID: in NetworkDetail()
/frameworks/base/wifi/java/android/net/wifi/
DScanResult.java445 public static final int EID_SSID = 0; field in ScanResult.InformationElement