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/ |
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 | ExcludedProxyTest.java | 165 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()
|
D | URLTest.java | 1239 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/ |
D | SocketStreamHandleCFNet.cpp | 119 …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()
|
D | SocketStreamHandle.h | 69 static void pacExecutionCallback(void* client, CFArrayRef proxyList, CFErrorRef error);
|
/external/okhttp/src/main/java/libcore/net/http/ |
D | HttpConnection.java | 142 List<Proxy> proxyList = selector.select(uri); in connect() local 143 if (proxyList != null) { in connect() 144 for (Proxy selectedProxy : proxyList) { in connect()
|