Home
last modified time | relevance | path

Searched refs:proxyAddress (Results 1 – 3 of 3) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DRouteSelector.java156 SocketAddress proxyAddress = proxy.address(); in resetNextInetSocketAddress() local
157 if (!(proxyAddress instanceof InetSocketAddress)) { in resetNextInetSocketAddress()
159 "Proxy.address() is not an " + "InetSocketAddress: " + proxyAddress.getClass()); in resetNextInetSocketAddress()
161 InetSocketAddress proxySocketAddress = (InetSocketAddress) proxyAddress; in resetNextInetSocketAddress()
DAuthenticatorAdapter.java67 InetSocketAddress proxyAddress = (InetSocketAddress) proxy.address(); in authenticateProxy() local
69 proxyAddress.getHostName(), getConnectToInetAddress(proxy, url), proxyAddress.getPort(), in authenticateProxy()
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
DHttpURLConnectionImpl.java277 InetSocketAddress proxyAddress = (InetSocketAddress) client.getProxy().address(); in getPermission() local
278 hostName = proxyAddress.getHostName(); in getPermission()
279 hostPort = proxyAddress.getPort(); in getPermission()