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

1234567891011

/openjdk9/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...]
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot.sparc/src/jdk/vm/ci/hotspot/sparc/
H A DSPARCHotSpotJVMCIBackendFactory.java140 public JVMCIBackend createJVMCIBackend(HotSpotJVMCIRuntimeProvider runtime, JVMCIBackend host) { argument
141 assert host == null;
/openjdk9/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 ) ;
/openjdk9/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);
/openjdk9/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.
/openjdk9/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.
/openjdk9/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);
/openjdk9/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
/openjdk9/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);
/openjdk9/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,
/openjdk9/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...]
/openjdk9/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);
/openjdk9/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";
/openjdk9/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();
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHttp1Request.java148 String host = uri.getHost();
160 return host;
162 return host + ":" + Integer.toString(port);
/openjdk9/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 ;
/openjdk9/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,
/openjdk9/hotspot/src/share/tools/hsdis/
H A DMakefile69 CONFIGURE_ARGS= --host=$(MINGW) --target=$(MINGW)
/openjdk9/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...]
/openjdk9/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;
/openjdk9/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");
/openjdk9/jdk/test/sun/net/www/protocol/http/
H A DRedirectOnPost.java76 public boolean verify(String host, SSLSession sess) {
/openjdk9/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(); }
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPProfileImpl.java288 String host = proftemp.getPrimaryAddress().getHost() ;
290 cachedIsLocal = orb.isLocalHost(host) &&
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot.amd64/src/jdk/vm/ci/hotspot/amd64/
H A DAMD64HotSpotJVMCIBackendFactory.java179 public JVMCIBackend createJVMCIBackend(HotSpotJVMCIRuntimeProvider runtime, JVMCIBackend host) { argument
180 assert host == null;

Completed in 190 milliseconds

1234567891011