OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getEffectivePort
(Results
1 - 3
of
3
) sorted by null
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java
56
public static int
getEffectivePort
(URI uri) {
57
return
getEffectivePort
(uri.getScheme(), uri.getPort());
60
public static int
getEffectivePort
(URL url) {
61
return
getEffectivePort
(url.getProtocol(), url.getPort());
64
private static int
getEffectivePort
(String scheme, int specifiedPort) {
/libcore/luni/src/main/java/java/net/
URL.java
573
public int
getEffectivePort
() {
574
return URI.
getEffectivePort
(protocol, port);
URI.java
[
all
...]
Completed in 223 milliseconds