Home
last modified time | relevance | path

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 DHostPortPair.java30 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 DJNLPProxySelector.java410 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 Dproxy_config_service_qt.cpp57 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 Dquobyte_util.go125 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 DRepParams.java552 String hostPortPair = tokenizer.nextToken();
553 if (!hostPortSet.add(hostPortPair)) {
556 " Duplicate specification: " + hostPortPair);
558 validateHostAndPort(hostPortPair);
H A DRepGroupDB.java1396 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 DRepImpl.java1507 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 DSqlInternalConnectionTds.cs1823 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 Dptcp.py174 def decode(cls, bytes, hostPortPair): argument
179 checksum, dlen, data, hostPortPair)
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/apis/core/validation/
H A Dvalidation.go957 for _, hostPortPair := range strings.Split(quobyte.Registry, ",") {
958 if _, _, err := net.SplitHostPort(hostPortPair); err != nil {