OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getEffectivePort
(Results
1 - 6
of
6
) sorted by null
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java
61
public static int
getEffectivePort
(URI uri) {
62
return
getEffectivePort
(uri.getScheme(), uri.getPort());
65
public static int
getEffectivePort
(URL url) {
66
return
getEffectivePort
(url.getProtocol(), url.getPort());
69
private static int
getEffectivePort
(String scheme, int specifiedPort) {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.java
32
import static com.squareup.okhttp.internal.Util.
getEffectivePort
;
230
&&
getEffectivePort
(a.url()) ==
getEffectivePort
(b.url())
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpURLConnectionImpl.java
52
import static com.squareup.okhttp.internal.Util.
getEffectivePort
;
231
int hostPort = Util.
getEffectivePort
(getURL());
465
boolean samePort =
getEffectivePort
(previousUrl) ==
getEffectivePort
(url);
RouteSelector.java
39
import static com.squareup.okhttp.internal.Util.
getEffectivePort
;
219
socketPort =
getEffectivePort
(uri);
HttpEngine.java
52
import static com.squareup.okhttp.internal.Util.
getEffectivePort
;
265
Address address = new Address(uriHost,
getEffectivePort
(request.url()),
577
return
getEffectivePort
(url) != getDefaultPort(url.getProtocol())
733
return new TunnelRequest(url.getHost(),
getEffectivePort
(url), userAgent,
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java
105
Channel channel = bootstrap.connect(url.getHost(), Util.
getEffectivePort
(url))
Completed in 74 milliseconds