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

/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java224 public InformationElement informationElements[]; field in class:ScanResult
339 if (informationElements != null) {
340 dest.writeInt(informationElements.length);
341 for (int i = 0; i < informationElements.length; i++) {
342 dest.writeInt(informationElements[i].id);
343 dest.writeInt(informationElements[i].bytes.length);
344 dest.writeByteArray(informationElements[i].bytes);
378 sr.informationElements = new InformationElement[n];
380 sr.informationElements[i] = new InformationElement();
381 sr.informationElements[
[all...]

Completed in 56 milliseconds