Searched refs:proxyList (Results 1 – 3 of 3) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | ProxySelectorTest.java | 59 private List proxyList; field in ProxySelectorTest 113 proxyList = selector.select(httpUri); in test_selectLjava_net_URI_SelectExact() 114 assertProxyEquals(proxyList, Proxy.NO_PROXY); in test_selectLjava_net_URI_SelectExact() 129 proxyList = selector.select(httpUri); in test_selectLjava_net_URI_SelectExact() 130 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTP_PROXY_HOST, HTTP_PROXY_PORT); in test_selectLjava_net_URI_SelectExact() 132 proxyList = selector.select(httpsUri); in test_selectLjava_net_URI_SelectExact() 133 assertProxyEquals(proxyList, Proxy.Type.HTTP, HTTPS_PROXY_HOST, HTTPS_PROXY_PORT); in test_selectLjava_net_URI_SelectExact() 135 proxyList = selector.select(ftpUri); in test_selectLjava_net_URI_SelectExact() 136 assertProxyEquals(proxyList, Proxy.Type.HTTP, FTP_PROXY_HOST, FTP_PROXY_PORT); in test_selectLjava_net_URI_SelectExact() 138 proxyList = selector.select(tcpUri); in test_selectLjava_net_URI_SelectExact() [all …]
|
D | URLTest.java | 1116 ArrayList<Proxy> proxyList = new ArrayList<Proxy>(1); in select() local 1117 proxyList.add(Proxy.NO_PROXY); in select() 1118 return proxyList; in select()
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | OldURLTest.java | 579 ArrayList<Proxy> proxyList = new ArrayList<Proxy>(1); in select() local 580 proxyList.add(Proxy.NO_PROXY); in select() 581 return proxyList; in select()
|