Searched defs:informationElements (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java327 public InformationElement informationElements[]; field in class:ScanResult
502 if (informationElements != null) {
503 dest.writeInt(informationElements.length);
504 for (int i = 0; i < informationElements.length; i++) {
505 dest.writeInt(informationElements[i].id);
506 dest.writeInt(informationElements[i].bytes.length);
507 dest.writeByteArray(informationElements[i].bytes);
550 sr.informationElements = new InformationElement[n];
552 sr.informationElements[i] = new InformationElement();
553 sr.informationElements[
[all...]

Completed in 66 milliseconds