Searched refs:host (Results 201 - 225 of 273) sorted by relevance

1234567891011

/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/
H A DUtils.java81 "date", "expect", "from", "host", "origin", "proxy-authorization",
177 String host = addr.getHostString();
178 if (IPAddressUtil.textToNumericFormatV4(host) != null)
180 if (IPAddressUtil.textToNumericFormatV6(host) != null)
182 return host;
222 * If method is CONNECT, then uri must be of form "scheme://host:port"
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/net/www/protocol/http/spnego/
H A DNegotiatorImpl.java63 * <li>Creating the GSSName for the target host, "HTTP/"+hostname
94 // RFC 4120 6.2.1 demands the host be lowercase
95 String peerName = "HTTP@" + hci.host.toLowerCase();
/openjdk10/jdk/src/java.management.rmi/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java679 final String protocol, host;
684 host = null; // will default to local host name
688 host = (address.getHost().equals("")) ? null : address.getHost();
694 address = new JMXServiceURL(protocol, host, port, urlPath);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DGroupLayout.java266 private Container host; field in class:GroupLayout
371 * @param host the {@code Container} the {@code GroupLayout} is
373 * @throws IllegalArgumentException if host is {@code null}
375 public GroupLayout(Container host) { argument
376 if (host == null) {
380 this.host = host;
785 host.remove(existingComponent);
786 if (newComponent.getParent() != host) {
787 host
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/ior/iiop/
H A DIIOPFactories.java232 public static IIOPAddress makeIIOPAddress( ORB orb, String host, int port ) argument
234 return new IIOPAddressImpl( orb, host, port ) ;
/openjdk10/jdk/src/java.base/windows/classes/java/net/
H A DPlainSocketImpl.java137 protected void connect(String host, int port) argument
140 impl.connect(host, port);
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/ext/
H A DStartTlsResponseImpl.java291 this.hostname = (hostname != null) ? hostname : ldapConnection.host;
331 ldapConnection.host, ldapConnection.port, false);
390 * @param session the SSLSession used on the connection to host.
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/
H A DHostAddresses.java100 String host = components[1];
101 InetAddress[] addr = InetAddress.getAllByName(host);
290 * Returns all the IP addresses of the local host.
/openjdk10/jdk/test/sun/security/krb5/auto/
H A DUnboundSSLUtils.java139 static SSLClient init(String host, int port, String cipherSuiteFilter, argument
143 SSLSocket socket = (SSLSocket) ssf.createSocket(host, port);
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/execution/
H A DJdiDefaultExecutionControl.java88 * @param host explicit hostname to use, if null use discovered
94 boolean isLaunch, String host, int timeout) throws IOException {
102 env.extraRemoteVMOptions(), remoteAgent, isLaunch, host,
93 create(ExecutionEnv env, String remoteAgent, boolean isLaunch, String host, int timeout) argument
/openjdk10/jdk/test/javax/management/remote/mandatory/connection/
H A DMultiThreadDeadLockTest.java215 public Socket createSocket(String host, int port) throws IOException { argument
217 //print("Calling createSocket(" + host + " " + port + ")");
220 Socket s = new Socket(host, port);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DImageView.java379 Container host = getContainer();
380 Image img = getImage(host == null || host.isEnabled());
386 icon.paintIcon(host, g,
399 icon.paintIcon(host, g,
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DURI.java31 * the various components (scheme, host, port, userinfo, path, query
44 * of user information, host, and port), path segment, query segment
223 /** If specified, stores the host for this URI; otherwise null */
264 * accordingly - setting the scheme, userinfo, host,port, path, query
283 * accordingly - setting the scheme, userinfo, host,port, path, query
400 * @param p_userinfo the URI userinfo (cannot be specified if host
404 * be specified if host is null)
429 "Userinfo may not be specified if host is not specified!");
433 "Port may not be specified if host is not specified!");
569 // this is a valid server based authority, so set the host t
988 isValidServerBasedAuthority(String host, int port, String userinfo) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DSSLContextImpl.java185 abstract SSLEngine createSSLEngineImpl(String host, int port); argument
196 protected SSLEngine engineCreateSSLEngine(String host, int port) { argument
200 return createSSLEngineImpl(host, port);
622 SSLEngine createSSLEngineImpl(String host, int port) { argument
623 return new SSLEngineImpl(this, host, port, false);
1183 SSLEngine createSSLEngineImpl(String host, int port) { argument
1184 return new SSLEngineImpl(this, host, port, true);
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java131 LdapClient(String host, int port, String socketFactory, argument
136 System.err.println("LdapClient: constructor called " + host + ":" + port );
137 conn = new Connection(this, host, port, socketFactory, connectTimeout, readTimeout,
200 conn.host + ":" + conn.port);
221 conn.host + ":" + conn.port);
236 res = LdapSasl.saslBind(this, conn, conn.host, name, pw,
244 conn.host + ":" + conn.port);
273 conn.host + ":" + conn.port);
501 msg = conn.host + ":" + conn.port + " connection closed";
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DView.java1007 * things like scheduling a repaint, finding out the host
1265 Container host = getContainer();
1266 if (host != null) {
1267 host.repaint();
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHttp1Request.java147 String host = uri.getHost();
159 return host;
161 return host + ":" + Integer.toString(port);
/openjdk10/hotspot/src/share/tools/hsdis/
H A DMakefile69 CONFIGURE_ARGS= --host=$(MINGW) --target=$(MINGW)
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/activation/
H A DServerManagerImpl.java383 String host =
386 location.hostname = host ;
433 String host =
436 location.hostname = host ;
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/protocol/http/
H A DNegotiateAuthentication.java54 // hosts. The key for both maps is the host name.
132 String hostname = hci.host;
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/
H A DJaxmURI.java38 * the various components (scheme, host, port, userinfo, path, query
47 * by an authority segment (comprised of user information, host, and
114 /** If specified, stores the host for this URI; otherwise null */
150 * accordingly - setting the scheme, userinfo, host,port, path, query
242 * @param p_userinfo the URI userinfo (cannot be specified if host
246 * be specified if host is null)
271 "Userinfo may not be specified if host is not specified!");
275 "Port may not be specified if host is not specified!");
382 // host to empty string
431 // if we found a host, the
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DURLClassLoader.java726 * to connect to and accept connections from the URL's host is granted.
766 * permission to connect to and accept from the remote host
767 * after we've made sure the host is the correct one and is valid.
773 String host = locUrl.getHost();
774 if (host != null && (host.length() > 0))
775 p = new SocketPermission(host,
/openjdk10/jdk/test/java/net/URL/
H A DTest.java105 static Test test(String protocol, String host, int port, String file) { argument
106 return new Test(protocol, host, port, file);
108 private Test(String protocol, String host, int port, String file) { argument
111 url = new URL(protocol, host, port, file);
288 show("host", u.getHost());
303 if ((failed & HOST) != 0) sb.append(" host");
/openjdk10/jdk/test/sun/net/www/protocol/http/
H A DRedirectOnPost.java76 public boolean verify(String host, SSLSession sess) {
/openjdk10/test/fmw/gtest/src/
H A Dgtest-internal-inl.h1069 // Streams test results to the given port on the given host machine.
1092 SocketWriter(const string& host, const string& port) argument
1093 : sockfd_(-1), host_name_(host), port_num_(port) {
1138 StreamingListener(const string& host, const string& port) argument
1139 : socket_writer_(new SocketWriter(host, port)) { Start(); }

Completed in 187 milliseconds

1234567891011