Searched refs:host (Results 226 - 250 of 271) sorted by relevance

1234567891011

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/
H A DSPARCHotSpotBackendFactory.java85 public HotSpotBackend createBackend(HotSpotGraalRuntimeProvider runtime, CompilerConfiguration compilerConfiguration, HotSpotJVMCIRuntimeProvider jvmciRuntime, HotSpotBackend host) { argument
86 assert host == null;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/
H A DAArch64HotSpotBackendFactory.java89 public HotSpotBackend createBackend(HotSpotGraalRuntimeProvider graalRuntime, CompilerConfiguration compilerConfiguration, HotSpotJVMCIRuntimeProvider jvmciRuntime, HotSpotBackend host) { argument
90 assert host == null;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/dom3/
H A DLSSerializerImpl.java928 String host = url.getHost();
939 && (host == null || host.length() == 0 || host.equals("localhost"))) {
940 // do we also need to check for host.equals(hostname)
1206 String host = url.getHost();
1218 && (host == null || host.length() == 0 || host
1220 // do we also need to check for host
[all...]
/openjdk9/jdk/test/sun/net/www/http/HttpClient/
H A DB8025710.java157 String host = connectLineMatcher.group(1);
162 .createSocket(host, port);
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHttp2Connection.java321 String host;
325 host = proxy.getHostString();
328 host = uri.getHost();
331 return keyString(isSecure, isProxy, host, port);
334 // {C,S}:{H:P}:host:port
337 // H indicates host (direct) connection
340 static String keyString(boolean secure, boolean proxy, String host, int port) { argument
341 return (secure ? "S:" : "C:") + (proxy ? "P:" : "H:") + host + ":" + port;
H A DExchange.java546 String host = url.getHost();
547 sb.append(host);
/openjdk9/make/devkit/
H A DTools.gmk232 --host=$(HOST) --build=$(BUILD) \
282 --host=$(TARGET) --build=$(BUILD) \
347 --host=$(HOST) --build=$(BUILD) \
415 # very straightforward. just build a ccache. it is only for host.
445 # Ugly at best. Seems that when we compile host->host compiler, that are NOT
469 # Always need to build cross tools for build host self.
489 echo 'DEVKIT_SYSROOT="$$DEVKIT_ROOT/$$host/sysroot"' >> $@
513 # this is only built for host. so separate.
/openjdk9/jdk/test/javax/xml/ws/8043129/
H A Djavax.mail.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/mail/ com/sun/mail/imap/ ...
/openjdk9/jdk/test/sun/security/tools/jarsigner/
H A DTimestampCheck.java76 static String host = null; field in class:TimestampCheck
301 host = "http://localhost:" + port + "/";
553 args.add(host + path);
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/transport/
H A DSocketOrChannelAcceptorImpl.java157 String host = orb.getORBData().getORBServerHost();
158 inetSocketAddress = new InetSocketAddress(host, port);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/
H A DAMD64HotSpotBackendFactory.java90 public HotSpotBackend createBackend(HotSpotGraalRuntimeProvider graalRuntime, CompilerConfiguration compilerConfiguration, HotSpotJVMCIRuntimeProvider jvmciRuntime, HotSpotBackend host) { argument
91 assert host == null;
/openjdk9/jdk/src/java.base/share/classes/java/net/
H A DAbstractPlainSocketImpl.java156 * the specified host.
157 * @param host the specified host
160 protected void connect(String host, int port) argument
165 InetAddress address = InetAddress.getByName(host);
387 * establish a connection to the given <host, port>. If unsuccessful,
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/protocol/http/
H A DDigestAuthentication.java208 public DigestAuthentication(boolean isProxy, String host, int port, String realm, argument
213 host,
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DJTextComponent.java5079 JTextComponent host = component;
5081 int offset = host.viewToModel(pt);
5082 int composedStartIndex = host.composedTextStart.getOffset();
5087 Position newPos = host.getDocument().createPosition(offset);
5088 host.getInputContext().endComposition();
5092 EventQueue.invokeLater(new DoSetCaretPosition(host, newPos));
5107 JTextComponent host; field in class:JTextComponent.DoSetCaretPosition
5110 DoSetCaretPosition(JTextComponent host, Position newPos) { argument
5111 this.host = host;
[all...]
/openjdk9/hotspot/src/share/vm/utilities/
H A Dostream.cpp1087 struct hostent* host = os::get_host_by_name((char*)ip); local
1088 if (host != NULL) {
1089 memcpy(&server.sin_addr, host->h_addr_list[0], host->h_length);
H A Dostream.hpp287 bool connect(const char *host, short port);
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/utils/
H A DURI.java31 * the various components (scheme, host, port, userinfo, path, query
40 * by an authority segment (comprised of user information, host, and
124 /** If specified, stores the host for this URI; otherwise null.
170 * accordingly - setting the scheme, userinfo, host,port, path, query
270 * @param p_userinfo the URI userinfo (cannot be specified if host
274 * be specified if host is null)
302 Utils.messages.createMessage(MsgKey.ER_NO_USERINFO_IF_NO_HOST, null)); //"Userinfo may not be specified if host is not specified!");
308 Utils.messages.createMessage(MsgKey.ER_NO_PORT_IF_NO_HOST, null)); //"Port may not be specified if host is not specified!");
432 // host to empty string
484 // if we found a host, the
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/
H A DURI.java34 * the various components (scheme, host, port, userinfo, path, query
43 * by an authority segment (comprised of user information, host, and
122 /** If specified, stores the host for this URI; otherwise null.
168 * accordingly - setting the scheme, userinfo, host,port, path, query
268 * @param p_userinfo the URI userinfo (cannot be specified if host
272 * be specified if host is null)
300 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_USERINFO_IF_NO_HOST, null)); //"Userinfo may not be specified if host is not specified!");
306 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_PORT_IF_NO_HOST, null)); //"Port may not be specified if host is not specified!");
453 // host to empty string
505 // if we found a host, the
[all...]
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/host/
H A DNameClassBuilderHost.java46 package com.sun.xml.internal.rngom.parse.host;
/openjdk9/jdk/src/java.desktop/share/classes/sun/applet/
H A DAppletPanel.java1070 String host = locUrl.getHost();
1071 if (host != null && (host.length() > 0))
1072 perms.add(new SocketPermission(host,
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/server/
H A DLoaderHandler.java1086 * from the host of non-"file:" URLs, otherwise the
1091 // get URL with meaningful host component
1100 String host = hostURL.getHost();
1101 if (host != null &&
1102 p.implies(new SocketPermission(host,
1106 new SocketPermission(host,
/openjdk9/jdk/test/java/net/URLPermission/
H A DURLTest.java181 ssl.setHostnameVerifier((host, sess) -> true);
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DStyleSheet.java2229 Container host = v.getContainer();
2240 host.getComponentOrientation().isLeftToRight();
2269 Color c = (host.isEnabled()
2272 : host.getForeground())
2277 drawIcon(g, (int) x, (int) y, (int) w, (int) h, align, host);
2688 host = v;
2797 ((StyleConstants)key, host);
2830 if (host == null) {
2833 View parent = host.getParent();
2838 View host; field in class:StyleSheet.ViewAttributeSet
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/security/ssl/
H A DSSLEngineImpl.java294 * host/port hints. This Engine will not be able to cache
306 SSLEngineImpl(SSLContextImpl ctx, String host, int port, boolean isDTLS) { argument
307 super(host, port);
2299 String host = getPeerHost();
2300 retval.append((host == null) ? "null" : host);
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/
H A DTCPTransport.java125 /** client host for the current thread's connection */
402 * Find client host name (or "0.0.0.0" if unknown)
604 * Returns the client host for the current thread's connection. Throws
666 String host = (addr != null) ? addr.getHostAddress() : "*";
668 sm.checkAccept(host, socket.getPort());
771 // suggest endpoint (in case client doesn't know host name)

Completed in 354 milliseconds

1234567891011