Home
last modified time | relevance | path

Searched refs:informationElements (Results 1 – 11 of 11) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DScanResultUtilTest.java48 input.informationElements = new InformationElement[] { in convertScanResult()
64 input.informationElements = new InformationElement[] { in convertScanResultWithAnqpLines()
79 input.informationElements = new InformationElement[] { in convertScanResultWithoutWifiSsid()
131 input.informationElements = new InformationElement[] { in testPskSha256SaeTransitionModeCheck()
150 input.informationElements = new InformationElement[] { in testPskSaeTransitionModeCheck()
169 input.informationElements = new InformationElement[] { in testPskNotInTransitionModeCheck()
188 input.informationElements = new InformationElement[] { in testSaeNotInTransitionModeCheck()
223 assertArrayEquals("ScanResult information elements", input.informationElements, in validateScanDetail()
224 output.getScanResult().informationElements); in validateScanDetail()
/frameworks/base/wifi/java/android/net/wifi/
DScanResult.java525 public InformationElement[] informationElements; field in ScanResult
531 return Collections.unmodifiableList(Arrays.asList(informationElements)); in getInformationElements()
660 informationElements = source.informationElements; in ScanResult()
761 if (informationElements != null) { in writeToParcel()
762 dest.writeInt(informationElements.length); in writeToParcel()
763 for (int i = 0; i < informationElements.length; i++) { in writeToParcel()
764 dest.writeInt(informationElements[i].id); in writeToParcel()
765 dest.writeInt(informationElements[i].bytes.length); in writeToParcel()
766 dest.writeByteArray(informationElements[i].bytes); in writeToParcel()
842 sr.informationElements = new InformationElement[n];
[all …]
/frameworks/base/wifi/tests/src/android/net/wifi/rtt/
DWifiRttManagerTest.java359 scan.informationElements = null; in testResponderPreambleSelection()
369 scan.informationElements = new ScanResult.InformationElement[2]; in testResponderPreambleSelection()
370 scan.informationElements[0] = htCap; in testResponderPreambleSelection()
371 scan.informationElements[1] = vhtCap; in testResponderPreambleSelection()
378 scan.informationElements[0] = vsa; in testResponderPreambleSelection()
379 scan.informationElements[1] = vsa; in testResponderPreambleSelection()
386 scan.informationElements[0] = vsa; in testResponderPreambleSelection()
387 scan.informationElements[1] = htCap; in testResponderPreambleSelection()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DScanDetail.java44 ScanResult.InformationElement[] informationElements, List<String> anqpLines) { in ScanDetail() argument
54 mScanResult.informationElements = informationElements; in ScanDetail()
DWifiConnectivityManager.java513 if (result.informationElements == null) { in onPnoNetworkFound()
/frameworks/base/wifi/java/android/net/wifi/rtt/
DResponderConfig.java307 if (scanResult.informationElements != null && scanResult.informationElements.length != 0) { in fromScanResult()
310 for (ScanResult.InformationElement ie : scanResult.informationElements) { in fromScanResult()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConnectivityManagerTest.java241 scanResults[0].informationElements = new InformationElement[1]; in mockWifiScanner()
242 scanResults[0].informationElements[0] = new InformationElement(); in mockWifiScanner()
243 scanResults[0].informationElements[0].id = InformationElement.EID_SSID; in mockWifiScanner()
244 scanResults[0].informationElements[0].bytes = in mockWifiScanner()
1993 scanDatas[0].getResults()[0].informationElements = new InformationElement[0];
1994 scanDatas[0].getResults()[1].informationElements = new InformationElement[0];
1995 scanDatas[0].getResults()[2].informationElements = new InformationElement[0];
1996 scanDatas[0].getResults()[3].informationElements = new InformationElement[0];
DWifiVendorHalTest.java3316 staScanResult.informationElements.add(ie1); in createHidlAndFrameworkBgScanResult()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointManager.java488 InformationElementUtil.getRoamingConsortiumIE(scanResult.informationElements); in findEapMethodFromNAIRealmMatchedWithCarrier()
490 scanResult.informationElements); in findEapMethodFromNAIRealmMatchedWithCarrier()
788 InformationElementUtil.getRoamingConsortiumIE(scanResult.informationElements); in getAllMatchedProviders()
790 scanResult.informationElements); in getAllMatchedProviders()
906 InformationElementUtil.getHS2VendorSpecificIE(scanResult.informationElements); in getANQPElements()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DScanResultUtil.java45 scanResult.informationElements, scanResult.anqpLines, scanResult.frequency); in toScanDetail()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
DWifiScanningServiceImpl.java1434 if (result.informationElements != null) { in reportFullScanResult()
1435 newResult.informationElements = result.informationElements.clone(); in reportFullScanResult()
1438 newResult.informationElements = null; in reportFullScanResult()
1863 if (scanResult.informationElements != null in isSingleScanNeeded()
1864 && scanResult.informationElements.length > 0) { in isSingleScanNeeded()