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

1234567891011

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/
H A DSPARCHotSpotBackendFactory.java84 public HotSpotBackend createBackend(HotSpotGraalRuntimeProvider runtime, CompilerConfiguration compilerConfiguration, HotSpotJVMCIRuntimeProvider jvmciRuntime, HotSpotBackend host) { argument
85 assert host == null;
/openjdk10/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;
/openjdk10/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) &&
/openjdk10/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;
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot.sparc/src/jdk/vm/ci/hotspot/sparc/
H A DSPARCHotSpotJVMCIBackendFactory.java188 public JVMCIBackend createJVMCIBackend(HotSpotJVMCIRuntimeProvider runtime, JVMCIBackend host) { argument
189 assert host == null;
/openjdk10/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...]
/openjdk10/jdk/test/sun/net/www/http/HttpClient/
H A DB8025710.java157 String host = connectLineMatcher.group(1);
162 .createSocket(host, port);
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DHttp2Connection.java322 String host;
326 host = proxy.getHostString();
329 host = uri.getHost();
332 return keyString(isSecure, isProxy, host, port);
335 // {C,S}:{H:P}:host:port
338 // H indicates host (direct) connection
341 static String keyString(boolean secure, boolean proxy, String host, int port) { argument
342 return (secure ? "S:" : "C:") + (proxy ? "P:" : "H:") + host + ":" + port;
H A DExchange.java545 String host = url.getHost();
546 sb.append(host);
/openjdk10/make/devkit/
H A DTools.gmk230 --host=$(HOST) --build=$(BUILD) \
280 --host=$(TARGET) --build=$(BUILD) \
345 --host=$(HOST) --build=$(BUILD) \
413 # very straightforward. just build a ccache. it is only for host.
443 # Ugly at best. Seems that when we compile host->host compiler, that are NOT
467 # Always need to build cross tools for build host self.
487 echo 'DEVKIT_SYSROOT="$$DEVKIT_ROOT/$$host/sysroot"' >> $@
511 # this is only built for host. so separate.
/openjdk10/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/ ...
/openjdk10/jdk/test/sun/security/tools/jarsigner/
H A DTimestampCheck.java84 static String host = null; field in class:TimestampCheck
309 host = "http://localhost:" + port + "/";
561 args.add(host + path);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/
H A DAMD64HotSpotBackendFactory.java89 public HotSpotBackend createBackend(HotSpotGraalRuntimeProvider graalRuntime, CompilerConfiguration compilerConfiguration, HotSpotJVMCIRuntimeProvider jvmciRuntime, HotSpotBackend host) { argument
90 assert host == null;
/openjdk10/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);
/openjdk10/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,
/openjdk10/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,
/openjdk10/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...]
/openjdk10/hotspot/src/share/vm/utilities/
H A Dostream.cpp1089 struct hostent* host = os::get_host_by_name((char*)ip); local
1090 if (host != NULL) {
1091 memcpy(&server.sin_addr, host->h_addr_list[0], host->h_length);
H A Dostream.hpp287 bool connect(const char *host, short port);
/openjdk10/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...]
/openjdk10/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...]
/openjdk10/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,
/openjdk10/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;
/openjdk10/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,
/openjdk10/jdk/test/java/net/URLPermission/
H A DURLTest.java181 ssl.setHostnameVerifier((host, sess) -> true);

Completed in 218 milliseconds

1234567891011