Home
last modified time | relevance | path

Searched refs:informationElement (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiInfoTest.java826 ScanResult.InformationElement informationElement = new ScanResult.InformationElement(); in generateIes() local
827 informationElement.id = ScanResult.InformationElement.EID_HT_OPERATION; in generateIes()
828 informationElement.idExt = 0; in generateIes()
829 informationElement.bytes = new byte[]{0x11, 0x22, 0x33}; in generateIes()
830 informationElements.add(informationElement); in generateIes()
832 informationElement = new ScanResult.InformationElement(); in generateIes()
833 informationElement.id = ScanResult.InformationElement.EID_EXTENSION_PRESENT; in generateIes()
834 informationElement.idExt = ScanResult.InformationElement.EID_EXT_HE_OPERATION; in generateIes()
835 informationElement.bytes = new byte[]{0x44, 0x55, 0x66}; in generateIes()
836 informationElements.add(informationElement); in generateIes()
/packages/modules/Wifi/framework/java/android/net/wifi/
DScanResult.java1354 InformationElement informationElement = new InformationElement();
1355 informationElement.id = in.readInt();
1356 informationElement.idExt = in.readInt();
1357 informationElement.bytes = in.createByteArray();
1358 return informationElement;