/packages/modules/Wifi/framework/tests/src/android/net/wifi/ |
D | WifiInfoTest.java | 142 List<ScanResult.InformationElement> informationElements) { in makeWifiInfoForRedactionTest() argument 163 info.setInformationElements(informationElements); in makeWifiInfoForRedactionTest() 177 List<ScanResult.InformationElement> informationElements) { in assertNoRedaction() argument 197 assertEquals(informationElements.get(0).id, in assertNoRedaction() 199 assertEquals(informationElements.get(0).idExt, in assertNoRedaction() 201 assertArrayEquals(informationElements.get(0).bytes, in assertNoRedaction() 203 assertEquals(informationElements.get(1).id, in assertNoRedaction() 205 assertEquals(informationElements.get(1).idExt, in assertNoRedaction() 207 assertArrayEquals(informationElements.get(1).bytes, in assertNoRedaction() 229 List<ScanResult.InformationElement> informationElements = generateIes(); in testWifiInfoRedactNoRedactions() local [all …]
|
D | ScanResultTest.java | 240 writeScanResult.informationElements = new ScanResult.InformationElement[2]; in verifyScanResultParcelWithInformationElement() 241 writeScanResult.informationElements[0] = new ScanResult.InformationElement(); in verifyScanResultParcelWithInformationElement() 242 writeScanResult.informationElements[0].id = InformationElement.EID_HT_OPERATION; in verifyScanResultParcelWithInformationElement() 243 writeScanResult.informationElements[0].idExt = 0; in verifyScanResultParcelWithInformationElement() 244 writeScanResult.informationElements[0].bytes = new byte[]{0x11, 0x22, 0x33}; in verifyScanResultParcelWithInformationElement() 245 writeScanResult.informationElements[1] = new ScanResult.InformationElement(); in verifyScanResultParcelWithInformationElement() 246 writeScanResult.informationElements[1].id = InformationElement.EID_EXTENSION_PRESENT; in verifyScanResultParcelWithInformationElement() 247 writeScanResult.informationElements[1].idExt = InformationElement.EID_EXT_HE_OPERATION; in verifyScanResultParcelWithInformationElement() 248 writeScanResult.informationElements[1].bytes = new byte[]{0x44, 0x55, 0x66}; in verifyScanResultParcelWithInformationElement() 408 assertArrayEquals(expected.informationElements, actual.informationElements); in assertScanResultEquals()
|
/packages/modules/Wifi/framework/tests/src/android/net/wifi/util/ |
D | ScanResultUtilTest.java | 57 scanResult.informationElements = new InformationElement[] { in testNetworkCreationFromScanResult() 158 scanResult.informationElements = in testGenerateSecurityParamsListFromScanResult() 331 input.informationElements = new InformationElement[] { in testPskSha256SaeTransitionModeCheck() 358 input.informationElements = new InformationElement[] { in testPskSaeTransitionModeCheck() 385 input.informationElements = new InformationElement[] { in testPskNotInTransitionModeCheck() 412 input.informationElements = new InformationElement[] { in testSaeNotInTransitionModeCheck() 439 input.informationElements = new InformationElement[] { in testSaeExtKeyAkmSupportedNetwork() 466 input.informationElements = new InformationElement[] { in testFtEapAkmSupportedNetwork() 494 input.informationElements = new InformationElement[] { in testFilsSha256AkmSupportedNetwork() 523 input.informationElements = new InformationElement[] { in testFilsSha384AkmSupportedNetwork() [all …]
|
/packages/modules/Wifi/framework/tests/src/android/net/wifi/rtt/ |
D | WifiRttManagerTest.java | 640 scan.informationElements = null; in testResponderPreambleSelection() 650 scan.informationElements = new ScanResult.InformationElement[2]; in testResponderPreambleSelection() 651 scan.informationElements[0] = htCap; in testResponderPreambleSelection() 652 scan.informationElements[1] = vhtCap; in testResponderPreambleSelection() 659 scan.informationElements[0] = vsa; in testResponderPreambleSelection() 660 scan.informationElements[1] = vsa; in testResponderPreambleSelection() 667 scan.informationElements[0] = vsa; in testResponderPreambleSelection() 668 scan.informationElements[1] = htCap; in testResponderPreambleSelection() 677 scan.informationElements[0] = vhtCap; in testResponderPreambleSelection() 678 scan.informationElements[1] = heCap; in testResponderPreambleSelection() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | ScanDetail.java | 52 @Nullable ScanResult.InformationElement[] informationElements, in ScanDetail() argument 100 mScanResult.informationElements = informationElements; in ScanDetail() 129 scanResult.informationElements, in ScanDetail()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiHealthMonitorTest.java | 296 scanDatas[0].getResults()[0].informationElements = new InformationElement[0]; in mockScanData() 297 scanDatas[0].getResults()[1].informationElements = new InformationElement[0]; in mockScanData() 298 scanDatas[0].getResults()[2].informationElements = new InformationElement[0]; in mockScanData() 299 scanDatas[0].getResults()[3].informationElements = new InformationElement[0]; in mockScanData() 308 scanDatas[0].getResults()[0].informationElements = new InformationElement[0]; in mockScanDataAbove2GOnly() 309 scanDatas[0].getResults()[1].informationElements = new InformationElement[0]; in mockScanDataAbove2GOnly() 310 scanDatas[0].getResults()[2].informationElements = new InformationElement[0]; in mockScanDataAbove2GOnly() 311 scanDatas[0].getResults()[3].informationElements = new InformationElement[0]; in mockScanDataAbove2GOnly()
|
/packages/modules/Wifi/framework/java/android/net/wifi/ |
D | ScanResult.java | 1395 public InformationElement[] informationElements; field in ScanResult 1401 return Collections.unmodifiableList(Arrays.asList(informationElements)); in getInformationElements() 1778 informationElements = source.informationElements; in ScanResult() 1894 dest.writeTypedArray(informationElements, flags); in writeToParcel() 1943 + informationElements.length in writeToParcel() 1983 sr.informationElements = in.createTypedArray(InformationElement.CREATOR);
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/6/android/net/ |
D | ScanResultInfoParcelable.aidl | 22 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/7/android/net/ |
D | ScanResultInfoParcelable.aidl | 22 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/8/android/net/ |
D | ScanResultInfoParcelable.aidl | 22 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/18/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/9/android/net/ |
D | ScanResultInfoParcelable.aidl | 23 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/17/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/12/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/11/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/10/android/net/ |
D | ScanResultInfoParcelable.aidl | 24 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/current/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/15/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/21/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/19/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/14/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/13/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/16/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/20/android/net/ |
D | ScanResultInfoParcelable.aidl | 39 android.net.InformationElementParcelable[] informationElements;
|
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/ |
D | ScanResultInfoParcelable.aidl | 25 InformationElementParcelable[] informationElements;
|