Searched refs:host (Results 151 - 175 of 237) sorted by relevance

12345678910

/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DMain.java103 static String host; field in class:Main
134 p.println(" -client <host:port> run benchmark client using server " +
135 "on specified host/port");
246 die("Error: -client missing host/port");
249 host = args[i].substring(0, sepi);
252 die("Error: illegal host/port specified for -client");
335 Registry reg = LocateRegistry.getRegistry(host, port);
345 host + ":" + port);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/spnego/
H A DNegotiateCallbackHandler.java66 hci.host, hci.addr, hci.port, hci.protocol,
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DParseUtil.java327 String host,
339 authority, userInfo, host, port,
349 String host,
376 appendAuthority(sb, authority, userInfo, host, port);
389 String host,
392 if (host != null) {
398 boolean needBrackets = ((host.indexOf(':') >= 0)
399 && !host.startsWith("[")
400 && !host.endsWith("]"));
402 sb.append(host);
323 toString(String scheme, String opaquePart, String authority, String userInfo, String host, int port, String path, String query, String fragment) argument
345 appendSchemeSpecificPart(StringBuffer sb, String opaquePart, String authority, String userInfo, String host, int port, String path, String query) argument
386 appendAuthority(StringBuffer sb, String authority, String userInfo, String host, int port) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicHTML.java349 /** The host, that is where we are rendering. */
350 // private JComponent host;
378 host = c;
457 host.revalidate();
458 host.repaint();
614 * things like scheduling a repaint, finding out the host
621 return host;
641 private JComponent host; field in class:BasicHTML.Renderer
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapPoolManager.java294 static LdapClient getLdapClient(String host, int port, String socketFactory, argument
311 id = new ClientId(version, host, port, protocol,
317 id = new SimpleClientId(version, host, port, protocol,
323 id = new DigestClientId(version, host, port, protocol,
329 new LdapClientFactory(host, port, socketFactory, connTimeout,
H A DLdapCtxFactory.java166 String host = ldapUrl.getHost();
173 if (host == null &&
193 ctx = new LdapCtx(dn, host, port, env, ldapUrl.useSsl());
/openjdk7/jdk/src/windows/native/java/net/
H A DInet4AddressImpl.c123 * String "host" shouldn't be a %d.%d.%d.%d string. The only
136 jstring host) {
152 if (IS_NULL(host)) {
153 JNU_ThrowNullPointerException(env, "host argument");
156 hostname = JNU_GetStringPlatformChars(env, host, JNI_FALSE);
163 * bug whereby 0.0.0.0 is returned if any host name has a white space.
207 JNU_ReleaseStringPlatformChars(env, host, hostname);
239 setInetAddress_hostName(env, iaObj, host);
249 JNU_ReleaseStringPlatformChars(env, host, hostname);
521 * we were able to reach the host!
135 Java_java_net_Inet4AddressImpl_lookupAllHostAddr(JNIEnv *env, jobject this, jstring host) argument
[all...]
/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/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaContactInfoListImpl.java194 String host = socketInfo.getHost().toLowerCase();
196 contactInfo = createContactInfo(type, host, port);
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpCookie.java713 * The utility method to check whether a host name is in a domain
719 * effective host name = hostname if host name contains dot<br>
722 * <p>Host A's name domain-matches host B's if:
724 * <li>their host name strings string-compare equal; or</li>
730 * <p>A host isn't in a domain (RFC 2965 sec. 3.3.2) if:
734 * <li>The effective host name that derives from the request-host does
736 * <li>The request-host is a HDN (not IP address) and has the form HD,
743 * <li>A Set-Cookie2 from request-host
761 domainMatches(String domain, String host) argument
[all...]
H A DHttpURLConnection.java568 * permission necessary to connect to the destination host and port.
575 * host and port.
580 String host = url.getHost() + ":" + port;
581 Permission permission = new SocketPermission(host, "connect");
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java123 public NTLMAuthentication(boolean isProxy, String host, int port, argument
127 host,
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPathParser.java114 String host = input.substring(off, next); //host
119 root = "\\\\" + host + "\\" + input.substring(off, next) + "\\";
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DFileServerHandler.java148 String host = req.getFirst ("Host");
149 String location = "http://"+host+uri.getPath() + "/";
/openjdk7/jdk/test/java/net/DatagramSocket/
H A DSendDatagramToBadAddress.java117 String host = "127.0.0.1";
118 InetAddress addr = InetAddress.getByName(host);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DServerIdentityTest.java126 String host = iphost? "127.0.0.1": "localhost";
127 URL url = new URL("https://"+host+":"+serverPort+"/index.html");
/openjdk7/jdk/test/java/rmi/transport/pinClientSocketFactory/
H A DPinClientSocketFactory.java147 public Socket createSocket(String host, int port) throws IOException { argument
148 return new Socket(host, port);
/openjdk7/jdk/src/share/classes/sun/net/
H A DNetworkClient.java228 /** Create connection with host <i>host</i> on port <i>port</i> */
229 public NetworkClient(String host, int port) throws IOException { argument
230 openServer(host, port);
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java164 public NTLMAuthentication(boolean isProxy, String host, int port, argument
168 host,
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSocketTransportService.java69 * then assume that host supports IPv4 and return something to
198 String host;
201 host = InetAddress.getLocalHost().getHostName();
204 host = address.substring(0, splitIndex);
219 InetSocketAddress sa = new InetSocketAddress(host, port);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/host/
H A DAnnotationsHost.java46 package com.sun.xml.internal.rngom.parse.host;
H A DScopeHost.java46 package com.sun.xml.internal.rngom.parse.host;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DComponentView.java264 Container host = getContainer();
265 if (host != null) {
267 host.repaint();
/openjdk7/jdk/src/solaris/native/sun/net/spi/
H A DDefaultProxySelector.c49 * - /system/http_proxy/host string
158 jstring host)
190 phost = (*my_get_string_func)(gconf_client, "/system/http_proxy/host", NULL);
198 * /system/http_proxy/host (string)
205 phost = (*my_get_string_func)(gconf_client, "/system/http_proxy/host", NULL);
305 urlhost = (*env)->GetStringUTFChars(env, host, &isCopy);
310 * the URL host name matches with one of the sufixes,
319 (*env)->ReleaseStringUTFChars(env, host, urlhost);
155 Java_sun_net_spi_DefaultProxySelector_getSystemProxy(JNIEnv *env, jobject this, jstring proto, jstring host) argument
/openjdk7/jdk/test/javax/rmi/ssl/
H A DSSLSocketParametersTest.java86 public Socket createSocket(String host, int port) throws IOException { argument
88 host + "," + port + ")");
89 return super.createSocket(host, port);

Completed in 74 milliseconds

12345678910