Searched defs:host (Results 26 - 50 of 148) sorted by relevance

123456

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DBootstrapResolverImpl.java53 public BootstrapResolverImpl(ORB orb, String host, int port) { argument
61 IIOPAddress addr = IIOPFactories.makeIIOPAddress( orb, host, port ) ;
92 // Just calling this same routine with the same host/port
/openjdk7/jdk/src/share/classes/javax/net/
H A DSocketFactory.java133 * Creates a socket and connects it to the specified remote host
138 * method is called with the host address and <code>port</code>
141 * @param host the server host name with which to connect, or
148 * @throws UnknownHostException if the host is not known
155 public abstract Socket createSocket(String host, int port) argument
160 * Creates a socket and connects it to the specified remote host
167 * method is called with the host address and <code>port</code>
170 * @param host the server host nam
187 createSocket(String host, int port, InetAddress localHost, int localPort) argument
213 createSocket(InetAddress host, int port) argument
268 createSocket(String host, int port) argument
280 createSocket(String host, int port, InetAddress clientAddress, int clientPort) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/rmi/ssl/
H A DSslRMIClientSocketFactory.java114 public Socket createSocket(String host, int port) throws IOException { argument
121 sslSocketFactory.createSocket(host, port);
201 // overriding createSocket(String host, int port).
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DSocketHandler.java55 * <li> java.util.logging.SocketHandler.host
56 * specifies the target host name to connect to (no default).
69 private String host; field in class:SocketHandler
94 host = manager.getStringProperty(cname + ".host", null);
101 * @throws IllegalArgumentException if the host or port are invalid or
104 * host and port.
114 System.err.println("SocketHandler: connect failed to " + host + ":" + port);
121 * Construct a <tt>SocketHandler</tt> using a specified host and port.
124 * properties (or their default values) except that the given target host
135 SocketHandler(String host, int port) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClientFactory.java45 final private String host; field in class:LdapClientFactory
52 LdapClientFactory(String host, int port, String socketFactory, argument
54 this.host = host;
64 return new LdapClient(host, port, socketFactory,
69 return host + ":" + port;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/host/
H A DBase.java46 package com.sun.xml.internal.rngom.parse.host;
H A DCommentListHost.java46 package com.sun.xml.internal.rngom.parse.host;
H A DDivHost.java46 package com.sun.xml.internal.rngom.parse.host;
H A DElementAnnotationBuilderHost.java46 package com.sun.xml.internal.rngom.parse.host;
H A DGrammarHost.java46 package com.sun.xml.internal.rngom.parse.host;
58 * The following errors are checked by this host:
H A DIncludeHost.java46 package com.sun.xml.internal.rngom.parse.host;
H A DScopeHost.java46 package com.sun.xml.internal.rngom.parse.host;
/openjdk7/jdk/test/java/net/DatagramSocket/
H A DSendSize.java89 InetAddress host; field in class:SendSize.ClientThread
93 this.host = InetAddress.getLocalHost();
103 host, serverPort);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/SSLSecurity/
H A DJavaxSSLContextImpl.java42 protected SSLEngine engineCreateSSLEngine(String host, int port) { argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketFactoryImpl.java77 * Constructs an SSL connection to a named host at a specified port.
82 * @param host name of the host with which to connect
85 public Socket createSocket(String host, int port) argument
88 return new SSLSocketImpl(context, host, port);
93 * ServerSocket on the named host, at the given port. This
95 * host and port refer to the logical destination server. This
100 * @param host the server host
105 * @exception UnknownHostException if the host i
107 createSocket(Socket s, String host, int port, boolean autoClose) argument
136 createSocket(String host, int port, InetAddress clientAddress, int clientPort) argument
[all...]
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/simple/
H A DSimpleNameService.java45 public static void put(String host, String addr) { argument
46 hosts.put(host, addr);
49 public static void put(String host, byte addr[]) { argument
50 hosts.put(host, addrToString(addr));
53 public static void remove(String host) { argument
54 hosts.remove(host);
72 public InetAddress[] lookupAllHostAddr(String host) throws UnknownHostException { argument
76 String value = (String)hosts.get(host);
78 throw new UnknownHostException(host);
86 res[0] = InetAddress.getByAddress(host, add
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/event/
H A DVmStatusChangeEvent.java67 * @param host the MonitoredHost that is the source of the event.
74 public VmStatusChangeEvent(MonitoredHost host, Set active, argument
76 super(host);
88 * of each active Java Virtual Machine on the host. If
89 * there are no active Java Virtual Machines on the host,
103 * of each Java Virtual Machine started on the host. If
105 * host, an empty Set is returned.
118 * of each Java Virtual Machine terminated on the host. If
120 * host, an empty Set is returned.
/openjdk7/jdk/src/share/classes/sun/net/
H A DTransferProtocolClient.java134 /** standard constructor to host <i>host</i>, port <i>port</i>. */
135 public TransferProtocolClient(String host, int port) throws IOException { argument
136 super(host, port);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpCallerInfo.java48 final public String host, protocol, prompt, scheme; field in class:HttpCallerInfo
58 this.host = old.host;
73 host = url.getHost();
98 public HttpCallerInfo(URL url, String host, int port) { argument
100 this.host = host;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/resolver/
H A DResolverDefault.java70 * to implement a resolver. Obtains the necessary host and port
73 public static Resolver makeBootstrapResolver( ORB orb, String host, int port ) argument
75 return new BootstrapResolverImpl( orb, host, port ) ;
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLContextSpi.java110 * @param host the non-authoritative name of the host
121 protected abstract SSLEngine engineCreateSSLEngine(String host, int port); argument
/openjdk7/jdk/src/share/classes/java/rmi/
H A DNaming.java40 * //host:port/name
43 * <P>where <code>host</code> is the host (remote or local) where the registry
46 * by the registry. Both <code>host</code> and <code>port</code> are optional.
47 * If <code>host</code> is omitted, the host defaults to the local host. If
58 * local host, callers on a remote (or local) host can lookup the remote
60 * object. A registry may be shared by all servers running on a host o
346 String host; field in class:Naming.ParsedNamingURL
350 ParsedNamingURL(String host, int port, String name) argument
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRMISocketFactory.java70 * Creates a client socket connected to the specified host and port.
71 * @param host the host name
73 * @return a socket connected to the specified host and port.
77 public abstract Socket createSocket(String host, int port) argument
/openjdk7/jdk/test/sun/security/ssl/sanity/pluggability/
H A DMySSLContextImpl.java62 protected SSLEngine engineCreateSSLEngine(String host, int port) { argument
/openjdk7/jdk/test/java/rmi/dgc/retryDirtyCalls/
H A DRetryDirtyCalls.java178 public synchronized Socket createSocket(String host, int port) argument
188 return new Socket(host, port);

Completed in 78 milliseconds

123456