Searched refs:hostPortPair (Results 1 – 10 of 10) sorted by relevance
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/rep/utilint/ |
H A D | HostPortPair.java | 30 if ("".equals(hostPortPair)) { in getSocket() 34 int portStartIndex = hostPortPair.indexOf(SEPARATOR); in getSocket() 35 String hostName = hostPortPair; in getSocket() 59 String hostPortPair = tokenizer.nextToken(); in getSockets() local 60 helpers.add(getSocket(hostPortPair)); in getSockets() 73 public static String getHostname(String hostPortPair) { in getHostname() argument 74 int portStartIndex = hostPortPair.indexOf(SEPARATOR); in getHostname() 76 hostPortPair : in getHostname() 77 hostPortPair.substring(0, portStartIndex); in getHostname() 83 public static int getPort(String hostPortPair) { in getPort() argument [all …]
|
/dports/java/icedtea-web/icedtea-web-1.6.2/netx/net/sourceforge/jnlp/runtime/ |
H A D | JNLPProxySelector.java | 410 String hostPortPair = token.substring("PROXY".length()).trim(); in getProxiesFromPacResult() local 411 if (!hostPortPair.contains(":")) { in getProxiesFromPacResult() 414 String host = hostPortPair.split(":")[0]; in getProxiesFromPacResult() 417 port = Integer.valueOf(hostPortPair.split(":")[1]); in getProxiesFromPacResult() 424 String hostPortPair = token.substring("SOCKS".length()).trim(); in getProxiesFromPacResult() local 425 if (!hostPortPair.contains(":")) { in getProxiesFromPacResult() 428 String host = hostPortPair.split(":")[0]; in getProxiesFromPacResult() 431 port = Integer.valueOf(hostPortPair.split(":")[1]); in getProxiesFromPacResult()
|
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/core/net/ |
H A D | proxy_config_service_qt.cpp | 57 net::HostPortPair hostPortPair(qtProxy.hostName().toStdString(), qtProxy.port()); in fromQNetworkProxy() local 60 return net::ProxyServer(net::ProxyServer::SCHEME_SOCKS5, hostPortPair); in fromQNetworkProxy() 64 return net::ProxyServer(net::ProxyServer::SCHEME_HTTP, hostPortPair); in fromQNetworkProxy()
|
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/volume/quobyte/ |
H A D | quobyte_util.go | 125 for _, hostPortPair := range strings.Split(registry, ",") { 126 if _, _, err := net.SplitHostPort(hostPortPair); err != nil {
|
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/rep/impl/ |
H A D | RepParams.java | 552 String hostPortPair = tokenizer.nextToken(); 553 if (!hostPortSet.add(hostPortPair)) { 556 " Duplicate specification: " + hostPortPair); 558 validateHostAndPort(hostPortPair);
|
H A D | RepGroupDB.java | 1396 String hostPortPair = configManager.get(RepParams.NODE_HOST_PORT); in reinitFirstNode() local 1397 String hostname = HostPortPair.getHostname(hostPortPair); in reinitFirstNode() 1398 int port = HostPortPair.getPort(hostPortPair); in reinitFirstNode()
|
H A D | RepImpl.java | 1507 String hostPortPair = tokenizer.nextToken(); in getHelperSockets() local 1508 helpers.add(HostPortPair.getSocket(hostPortPair)); in getHelperSockets()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/SqlClient/ |
H A D | SqlInternalConnectionTds.cs | 1823 Tuple<string, string> hostPortPair; in SqlInternalConnectionTds() 1824 if (_currentSessionData._resolvedAliases.TryGetValue(host, out hostPortPair)) { in SqlInternalConnectionTds() 1825 host = hostPortPair.Item1; in SqlInternalConnectionTds() 1826 protocol = hostPortPair.Item2; in SqlInternalConnectionTds()
|
/dports/net-p2p/py-vertex/Vertex-0.3.1/vertex/ |
H A D | ptcp.py | 174 def decode(cls, bytes, hostPortPair): argument 179 checksum, dlen, data, hostPortPair)
|
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/apis/core/validation/ |
H A D | validation.go | 957 for _, hostPortPair := range strings.Split(quobyte.Registry, ",") { 958 if _, _, err := net.SplitHostPort(hostPortPair); err != nil {
|