Searched refs:excludedRoutes (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Connectivity/tests/cts/hostside/app/src/com/android/cts/net/hostside/ |
D | MyVpnService.java | 126 String excludedRoutes = null; in start() local 128 excludedRoutes = parseIpPrefixListArgument(packageName, intent, "excludedRoutes", in start() 189 + " excludedRoutes=" + excludedRoutes in start()
|
D | VpnTest.java | 379 private void establishVpn(String[] addresses, String[] routes, String[] excludedRoutes, in establishVpn() argument 388 .putExtra(mPackageName + ".excludedRoutes", TextUtils.join(",", excludedRoutes)) in establishVpn() 410 String[] addresses, String[] routes, String[] excludedRoutes, in startVpn() argument 415 startVpn(addresses, routes, excludedRoutes, allowedApplications, disallowedApplications, in startVpn() 420 String[] addresses, String[] routes, String[] excludedRoutes, in startVpn() argument 446 establishVpn(addresses, routes, excludedRoutes, allowedApplications, disallowedApplications, in startVpn()
|
/packages/modules/NetworkStack/tests/unit/src/android/net/ip/ |
D | IpClientTest.java | 586 excludedRoutes("fd2c:4e57:8e3c::/64")), in testIsProvisioned() 753 static Set<RouteInfo> excludedRoutes(String... excludedRoutes) { in excludedRoutes() argument 754 return mapIntoSet(excludedRoutes, (r) -> new RouteInfo(new IpPrefix(r), null /* gateway */, in excludedRoutes() 758 static Set<RouteInfo> routes(Set<RouteInfo> includedRoutes, Set<RouteInfo> excludedRoutes) { in routes() argument 759 Set<RouteInfo> result = new HashSet<>(includedRoutes.size() + excludedRoutes.size()); in routes() 762 result.addAll(excludedRoutes); in routes()
|