Home
last modified time | relevance | path

Searched refs:proxyList (Results 1 – 6 of 6) sorted by relevance

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DProxySelectorTest.java59 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 …]
DExcludedProxyTest.java165 Proxy proxyList[] = { proxy1, proxy2 }; in test_openConnectionLjava_net_Proxy() local
166 for (int i = 0; i < proxyList.length; ++i) { in test_openConnectionLjava_net_Proxy()
172 .openConnection(proxyList[i]); in test_openConnectionLjava_net_Proxy()
DURLTest.java1239 ArrayList<Proxy> proxyList = new ArrayList<Proxy>(1); in select() local
1240 proxyList.add(Proxy.NO_PROXY); in select()
1241 return proxyList; in select()
/external/webkit/Source/WebCore/platform/network/cf/
DSocketStreamHandleCFNet.cpp119 …CallbackInfo(SocketStreamHandle* handle, CFArrayRef proxyList) : handle(handle), proxyList(proxyLi… in MainThreadPACCallbackInfo()
121 CFArrayRef proxyList; member
124 void SocketStreamHandle::pacExecutionCallback(void* client, CFArrayRef proxyList, CFErrorRef) in pacExecutionCallback() argument
127 MainThreadPACCallbackInfo info(handle, proxyList); in pacExecutionCallback()
137 info->handle->chooseProxyFromArray(info->proxyList); in pacExecutionCallbackMainThread()
DSocketStreamHandle.h69 static void pacExecutionCallback(void* client, CFArrayRef proxyList, CFErrorRef error);
/external/okhttp/src/main/java/libcore/net/http/
DHttpConnection.java142 List<Proxy> proxyList = selector.select(uri); in connect() local
143 if (proxyList != null) { in connect()
144 for (Proxy selectedProxy : proxyList) { in connect()