HomeSort by relevance Sort by last modified time
    Searched refs:InformationElement (Results 1 - 13 of 13) 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))
144 private static InformationElement createIE(int id, byte[] bytes) {
145 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 31 import android.net.wifi.ScanResult.InformationElement;
199 scanResults[0].informationElements = new InformationElement[1];
200 scanResults[0].informationElements[0] = new InformationElement();
201 scanResults[0].informationElements[0].id = InformationElement.EID_SSID;
    [all...]
WifiStateMachineTest.java 294 ScanResult.InformationElement ie[] = new ScanResult.InformationElement[1];
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 397 public static class InformationElement {
415 public InformationElement() {
418 public InformationElement(InformationElement rhs) {
427 public InformationElement[] informationElements;
688 sr.informationElements = new InformationElement[n];
690 sr.informationElements[i] = new InformationElement();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java 44 ScanResult.InformationElement[] informationElements, List<String> anqpLines) {
WificondControl.java 342 ScanResult.InformationElement[] ies =
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonBuilder.java 607 for (ScanResult.InformationElement ie : scanResult.informationElements) {
    [all...]
  /frameworks/base/
preloaded-classes 129 [Landroid.net.wifi.ScanResult$InformationElement;
    [all...]
compiled-classes-phone     [all...]

Completed in 286 milliseconds