HomeSort by relevance Sort by last modified time
    Searched refs:proxyList (Results 1 - 8 of 8) sorted by null

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ProxySelectorTest.java 59 private List proxyList;
112 // no proxy, return a proxyList only contains NO_PROXY
113 proxyList = selector.select(httpUri);
114 assertProxyEquals(proxyList,Proxy.NO_PROXY);
129 proxyList = selector.select(httpUri);
130 assertProxyEquals(proxyList,Proxy.Type.HTTP,HTTP_PROXY_HOST,HTTP_PROXY_PORT);
132 proxyList = selector.select(httpsUri);
133 assertProxyEquals(proxyList,Proxy.Type.HTTP,HTTPS_PROXY_HOST,HTTPS_PROXY_PORT);
135 proxyList = selector.select(ftpUri);
136 assertProxyEquals(proxyList,Proxy.Type.HTTP,FTP_PROXY_HOST,FTP_PROXY_PORT)
    [all...]
ExcludedProxyTest.java 165 Proxy proxyList[] = { proxy1, proxy2 };
166 for (int i = 0; i < proxyList.length; ++i) {
172 .openConnection(proxyList[i]);
URLTest.java     [all...]
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 170 List<Proxy> proxyList = null;
172 proxyList = new ArrayList<Proxy>(1);
173 proxyList.add(proxy);
177 proxyList = selector.select(uri);
180 if (proxyList == null) {
185 Iterator<Proxy> iter = proxyList.iterator();
  /external/webkit/Source/WebCore/platform/network/cf/
SocketStreamHandle.h 69 static void pacExecutionCallback(void* client, CFArrayRef proxyList, CFErrorRef error);
SocketStreamHandleCFNet.cpp 119 MainThreadPACCallbackInfo(SocketStreamHandle* handle, CFArrayRef proxyList) : handle(handle), proxyList(proxyList) { }
121 CFArrayRef proxyList;
124 void SocketStreamHandle::pacExecutionCallback(void* client, CFArrayRef proxyList, CFErrorRef)
127 MainThreadPACCallbackInfo info(handle, proxyList);
137 info->handle->chooseProxyFromArray(info->proxyList);
  /libcore/luni/src/main/java/libcore/net/http/
HttpConnection.java 106 List<Proxy> proxyList = selector.select(uri);
107 if (proxyList != null) {
108 for (Proxy selectedProxy : proxyList) {
  /libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java 579 ArrayList<Proxy> proxyList = new ArrayList<Proxy>(1);
580 proxyList.add(Proxy.NO_PROXY);
581 return proxyList;

Completed in 732 milliseconds