Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DDevicePolicyManagerTest.java2531 assertThat(dpm.getProxyParameters(inetAddrProxy("192.0.2.1", 1234), emptyList())) in testGetProxyParameters()
2533 assertThat(dpm.getProxyParameters(inetAddrProxy("192.0.2.1", 1234), in testGetProxyParameters()
2536 assertThat(dpm.getProxyParameters(hostnameProxy("proxy.example.com", 1234), emptyList())) in testGetProxyParameters()
2538 assertThat(dpm.getProxyParameters(hostnameProxy("proxy.example.com", 1234), in testGetProxyParameters()
2542 assertThrows(IllegalArgumentException.class, () -> dpm.getProxyParameters( in testGetProxyParameters()
2544 assertThrows(IllegalArgumentException.class, () -> dpm.getProxyParameters( in testGetProxyParameters()
2546 assertThrows(IllegalArgumentException.class, () -> dpm.getProxyParameters( in testGetProxyParameters()
2548 assertThrows(IllegalArgumentException.class, () -> dpm.getProxyParameters( in testGetProxyParameters()
2550 assertThrows(IllegalArgumentException.class, () -> dpm.getProxyParameters( in testGetProxyParameters()
2552 assertThrows(IllegalArgumentException.class, () -> dpm.getProxyParameters( in testGetProxyParameters()
[all …]
/frameworks/base/core/java/android/app/admin/
DDevicePolicyManager.java6970 getProxyParameters(proxySpec, exclusionList); in setGlobalProxy()
6988 public Pair<String, String> getProxyParameters(Proxy proxySpec, List<String> exclusionList) { in getProxyParameters() method in DevicePolicyManager