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 22 import android.net.wifi.ScanResult.InformationElement;
75 * Expect parseInformationElement to return an empty InformationElement array.
80 InformationElement[] results =
87 * Expect parseInfomrationElement to return an empty InformationElement array.
92 InformationElement[] results =
108 InformationElement[] results =
111 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id);
131 InformationElement[] results =
134 assertEquals("Parsed result should be a ssid", InformationElement.EID_SSID, results[0].id);
154 InformationElement[] results
    [all...]
ScanDetailUtilTest.java 24 import android.net.wifi.ScanResult.InformationElement;
48 input.informationElements = new InformationElement[] {
49 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8))
64 input.informationElements = new InformationElement[] {
65 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8))
79 input.informationElements = new InformationElement[] {
80 createIE(InformationElement.EID_SSID, ssid.getBytes(StandardCharsets.UTF_8))
88 private static InformationElement createIE(int id, byte[] bytes) {
89 InformationElement ie = new InformationElement();
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
InformationElementUtil.java 20 import android.net.wifi.ScanResult.InformationElement;
36 public static InformationElement[] parseInformationElements(byte[] bytes) {
38 return new InformationElement[0];
42 ArrayList<InformationElement> infoElements = new ArrayList<>();
48 if (elementLength > data.remaining() || (eid == InformationElement.EID_SSID
55 if (eid == InformationElement.EID_SSID) {
59 InformationElement ie = new InformationElement();
65 return infoElements.toArray(new InformationElement[infoElements.size()]);
74 public void from(InformationElement ie)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
NetworkDetail.java 125 public NetworkDetail(String bssid, ScanResult.InformationElement[] infoElements,
165 for (ScanResult.InformationElement ie : infoElements) {
168 case ScanResult.InformationElement.EID_SSID:
171 case ScanResult.InformationElement.EID_BSS_LOAD:
174 case ScanResult.InformationElement.EID_HT_OPERATION:
177 case ScanResult.InformationElement.EID_VHT_OPERATION:
180 case ScanResult.InformationElement.EID_INTERWORKING:
183 case ScanResult.InformationElement.EID_ROAMING_CONSORTIUM:
186 case ScanResult.InformationElement.EID_VSA:
189 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];
AnqpCacheTest.java 64 ScanResult.InformationElement[] ie = new ScanResult.InformationElement[1];
WifiConnectivityManagerTest.java 27 import android.net.wifi.ScanResult.InformationElement;
155 scanResults[0].informationElements = new InformationElement[1];
156 scanResults[0].informationElements[0] = new InformationElement();
157 scanResults[0].informationElements[0].id = InformationElement.EID_SSID;
    [all...]
WifiStateMachineTest.java 280 ScanResult.InformationElement ie[] = new ScanResult.InformationElement[1];
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 315 public static class InformationElement {
333 public InformationElement() {
336 public InformationElement(InformationElement rhs) {
345 public InformationElement[] informationElements;
609 sr.informationElements = new InformationElement[n];
611 sr.informationElements[i] = new InformationElement();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java 47 ScanResult.InformationElement[] informationElements, List<String> anqpLines) {
WifiNative.java 705 ScanResult.InformationElement[] infoElements =
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonBuilder.java 605 for (ScanResult.InformationElement ie : scanResult.informationElements) {
    [all...]
  /frameworks/base/
compiled-classes-phone     [all...]

Completed in 248 milliseconds