Home
last modified time | relevance | path

Searched refs:wifiLp (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivityservice/
DCSIngressDiscardRuleTests.kt109 val wifiLp = lp(WIFI_IFNAME, IPV6_LINK_ADDRESS3) in testVpnIngressDiscardRule_UpdateVpnAddress() constant
110 val wifiAgent = Agent(nc = wifiNc, lp = wifiLp) in testVpnIngressDiscardRule_UpdateVpnAddress()
179 val wifiLp = lp(WIFI_IFNAME, IPV6_LINK_ADDRESS, LOCAL_IPV6_LINK_ADDRRESS) in testVpnIngressDiscardRule_DuplicatedIpAddress_UpdateVpnAddress() constant
180 val wifiAgent = Agent(nc = wifiNc, lp = wifiLp) in testVpnIngressDiscardRule_DuplicatedIpAddress_UpdateVpnAddress()
240 val wifiLp = lp(WIFI_IFNAME, IPV6_LINK_ADDRESS, LOCAL_IPV6_LINK_ADDRRESS) in testVpnIngressDiscardRule_DuplicatedIpAddress_UpdateNonVpnAddress() constant
241 val wifiAgent = Agent(nc = wifiNc, lp = wifiLp) in testVpnIngressDiscardRule_DuplicatedIpAddress_UpdateNonVpnAddress()
259 wifiAgent.sendLinkProperties(wifiLp) in testVpnIngressDiscardRule_DuplicatedIpAddress_UpdateNonVpnAddress()
279 val wifiLp = lp(WIFI_IFNAME, IPV6_LINK_ADDRESS, LOCAL_IPV6_LINK_ADDRRESS) in testVpnIngressDiscardRule_UnregisterAfterReplacement() constant
280 val wifiAgent = Agent(nc = wifiNc, lp = wifiLp) in testVpnIngressDiscardRule_UnregisterAfterReplacement()
DCSNetworkActivityTest.kt114 val wifiLp = LinkProperties().apply { in <lambda>() constant
118 val wifiAgent = Agent(nc = wifiNc, lp = wifiLp) in <lambda>()
/packages/modules/Connectivity/tests/unit/java/com/android/server/
DConnectivityServiceTest.java7906 LinkProperties wifiLp = new LinkProperties();
7907 wifiLp.setInterfaceName(WIFI_IFNAME);
7931 mWiFiAgent.sendLinkProperties(wifiLp);
7933 assertEquals(wifiLp, mService.getActiveLinkProperties());
8009 mWiFiAgent.sendLinkProperties(wifiLp);
8018 assertEquals(wifiLp, mService.getActiveLinkProperties());
8157 final LinkProperties wifiLp = new LinkProperties();
8158 wifiLp.setInterfaceName(WIFI_IFNAME);
8159 mWiFiAgent = new TestNetworkAgentWrapper(TRANSPORT_WIFI, wifiLp);
10351 final LinkProperties wifiLp = new LinkProperties();
[all …]
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DUpstreamNetworkMonitorTest.java459 final LinkProperties wifiLp = wifiAgent.linkProperties; in testLocalPrefixes() local
460 wifiLp.setInterfaceName("wlan0"); in testLocalPrefixes()
469 wifiLp.addLinkAddress(new LinkAddress(addrStr + cidr)); in testLocalPrefixes()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNetworkAgentTest.kt1662 val wifiLp = mCM.getLinkProperties(wifiNetwork)!! in testUnregisterAfterReplacement() constant
1664 assertFalse(wifiLp.getRoutes().contains(newRoute)) in testUnregisterAfterReplacement()
1665 wifiLp.addRoute(newRoute) in testUnregisterAfterReplacement()
1666 wifiAgent.sendLinkProperties(wifiLp) in testUnregisterAfterReplacement()