HomeSort by relevance Sort by last modified time
    Searched refs:InformationElement (Results 1 - 15 of 15) sorted by null

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
InformationElementUtilTest.java 24 import android.net.wifi.ScanResult.InformationElement;
79 * Expect parseInformationElement to return an empty InformationElement array.
84 InformationElement[] results =
91 * Expect parseInfomrationElement to return an empty InformationElement array.
96 InformationElement[] results =
112 InformationElement[] results =
115 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id);
135 InformationElement[] results =
138 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id);
158 InformationElement[] results
    [all...]
ScanResultUtilTest.java 22 import android.net.wifi.ScanResult.InformationElement;
47 input.informationElements = new InformationElement[] {
48 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8))
63 input.informationElements = new InformationElement[] {
64 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8))
78 input.informationElements = new InformationElement[] {
79 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8))
118 private static InformationElement createIE(int id, byte[] bytes) {
119 InformationElement ie = new InformationElement();
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
InformationElementUtil.java 19 import android.net.wifi.ScanResult.InformationElement;
35 public static InformationElement[] parseInformationElements(byte[] bytes) {
37 return new InformationElement[0];
41 ArrayList<InformationElement> infoElements = new ArrayList<>();
47 if (elementLength > data.remaining() || (eid == InformationElement.EID_SSID
54 if (eid == InformationElement.EID_SSID) {
58 InformationElement ie = new InformationElement();
64 return infoElements.toArray(new InformationElement[infoElements.size()]);
73 public static RoamingConsortium getRoamingConsortiumIE(InformationElement[] ies)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
NetworkDetail.java 121 public NetworkDetail(String bssid, ScanResult.InformationElement[] infoElements,
162 for (ScanResult.InformationElement ie : infoElements) {
165 case ScanResult.InformationElement.EID_SSID:
168 case ScanResult.InformationElement.EID_BSS_LOAD:
171 case ScanResult.InformationElement.EID_HT_OPERATION:
174 case ScanResult.InformationElement.EID_VHT_OPERATION:
177 case ScanResult.InformationElement.EID_INTERWORKING:
180 case ScanResult.InformationElement.EID_ROAMING_CONSORTIUM:
183 case ScanResult.InformationElement.EID_VSA:
186 case ScanResult.InformationElement.EID_EXTENDED_CAPS
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
ScanResults.java 83 public static ScanResult.InformationElement generateSsidIe(String ssid) {
84 ScanResult.InformationElement ie = new ScanResult.InformationElement();
85 ie.id = ScanResult.InformationElement.EID_SSID;
110 ScanResult.InformationElement[] ie;
112 ie = new ScanResult.InformationElement[1];
115 ie = new ScanResult.InformationElement[0];
WifiConnectivityManagerTest.java 35 import android.net.wifi.ScanResult.InformationElement;
230 scanResults[0].informationElements = new InformationElement[1];
231 scanResults[0].informationElements[0] = new InformationElement();
232 scanResults[0].informationElements[0].id = InformationElement.EID_SSID;
    [all...]
WifiStateMachineTest.java 288 ScanResult.InformationElement ie[] = new ScanResult.InformationElement[1];
    [all...]
  /frameworks/base/wifi/tests/src/android/net/wifi/rtt/
WifiRttManagerTest.java 344 ScanResult.InformationElement htCap = new ScanResult.InformationElement();
345 htCap.id = ScanResult.InformationElement.EID_HT_CAPABILITIES;
347 ScanResult.InformationElement vhtCap = new ScanResult.InformationElement();
348 vhtCap.id = ScanResult.InformationElement.EID_VHT_CAPABILITIES;
350 ScanResult.InformationElement vsa = new ScanResult.InformationElement();
351 vsa.id = ScanResult.InformationElement.EID_VSA;
366 scan.informationElements = new ScanResult.InformationElement[2]
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiJsonParser.java 111 scanResult.informationElements = new ScanResult.InformationElement[jIes.length()];
113 ScanResult.InformationElement scanIe = new ScanResult.InformationElement();
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 399 public static class InformationElement {
419 public InformationElement() {
422 public InformationElement(InformationElement rhs) {
431 public InformationElement[] informationElements;
741 sr.informationElements = new InformationElement[n];
743 sr.informationElements[i] = new InformationElement();
  /frameworks/base/wifi/java/android/net/wifi/rtt/
ResponderConfig.java 19 import static android.net.wifi.ScanResult.InformationElement.EID_HT_CAPABILITIES;
20 import static android.net.wifi.ScanResult.InformationElement.EID_VHT_CAPABILITIES;
309 for (ScanResult.InformationElement ie : scanResult.informationElements) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java 44 ScanResult.InformationElement[] informationElements, List<String> anqpLines) {
WificondControl.java 536 ScanResult.InformationElement[] ies =
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonBuilder.java 623 for (ScanResult.InformationElement ie : scanResult.informationElements) {
    [all...]
  /frameworks/base/config/
preloaded-classes     [all...]

Completed in 235 milliseconds