Searched defs:protocol (Results 1 - 25 of 57) sorted by relevance

123

/libcore/ojluni/src/main/java/java/net/
H A DURLStreamHandlerFactory.java30 * protocol handlers.
33 * <code>URLStreamHandler</code> for a specific protocol.
43 * protocol.
45 * @param protocol the protocol ("<code>ftp</code>",
47 * @return a <code>URLStreamHandler</code> for the specific protocol.
50 URLStreamHandler createURLStreamHandler(String protocol); argument
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
H A DHttpCallerInfo.java26 package sun.net.www.protocol.http;
48 final public String host, protocol, prompt, scheme; field in class:HttpCallerInfo
59 this.protocol = old.protocol;
90 protocol = url.getProtocol();
104 protocol = url.getProtocol();
H A DAuthCache.java26 package sun.net.www.protocol.http;
H A DAuthCacheImpl.java26 package sun.net.www.protocol.http;
H A DAuthScheme.java25 package sun.net.www.protocol.http;
H A DHandler.java30 package sun.net.www.protocol.http;
H A DHttpAuthenticator.java26 package sun.net.www.protocol.http;
H A DNegotiator.java26 package sun.net.www.protocol.http;
51 clazz = Class.forName("sun.net.www.protocol.http.spnego.NegotiatorImpl", true, null);
H A DAuthCacheValue.java26 package sun.net.www.protocol.http;
H A DAuthenticationHeader.java26 package sun.net.www.protocol.http;
H A DBasicAuthentication.java26 package sun.net.www.protocol.http;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/internal/net/www/protocol/file/
H A DFileURLConnectionTest.java17 package org.apache.harmony.tests.internal.net.www.protocol.file;
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
H A DURLJarFileCallBack.java26 package sun.net.www.protocol.jar;
H A DJarFileFactory.java26 package sun.net.www.protocol.jar;
/libcore/ojluni/src/main/java/sun/net/www/protocol/netdoc/
H A DHandler.java35 package sun.net.www.protocol.netdoc;
/libcore/luni/src/test/java/libcore/java/net/
H A DURLStreamHandlerFactoryTest.java75 // clear cached protocol handlers if they exist
80 System.setProperty("java.protocol.handler.pkgs", getHandlerPackageName());
84 System.clearProperty("java.protocol.handler.pkgs");
89 // clear cached protocol handlers if they exist
99 System.setProperty("java.protocol.handler.pkgs", getHandlerPackageName());
103 System.clearProperty("java.protocol.handler.pkgs");
113 @Override public URLStreamHandler createURLStreamHandler(String protocol) { argument
/libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
H A DHandler.java30 package sun.net.www.protocol.ftp;
38 import sun.net.www.protocol.http.HttpURLConnection;
/libcore/ojluni/src/main/java/sun/net/www/protocol/gopher/
H A DHandler.java26 package sun.net.www.protocol.gopher;
37 import sun.net.www.protocol.http.HttpURLConnection;
40 * A class to handle the gopher protocol.
H A DGopherClient.java25 package sun.net.www.protocol.gopher;
37 /** Class to maintain the state of a gopher fetch and handle the protocol */
/libcore/ojluni/src/main/java/sun/net/www/protocol/https/
H A DDelegateHttpsURLConnection.java26 package sun.net.www.protocol.https;
38 * of protocol implementation (this one)
47 // from sun.net.www.protocol.http.HttpURLConnection
54 sun.net.www.protocol.http.Handler handler,
61 sun.net.www.protocol.http.Handler handler,
H A DHandler.java30 package sun.net.www.protocol.https;
37 public class Handler extends sun.net.www.protocol.http.Handler {
/libcore/ojluni/src/main/java/sun/net/www/protocol/mailto/
H A DHandler.java30 package sun.net.www.protocol.mailto;
37 //import sun.net.www.protocol.news.ArticlePoster;
108 * mailto protocol.
118 String protocol = u.getProtocol();
142 setURL(u, protocol, host, port, file, null);
/libcore/ojluni/src/main/java/sun/net/www/protocol/file/
H A DHandler.java26 package sun.net.www.protocol.file;
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLContext.java34 * Instances of this class represent a secure socket protocol
80 * This protocol is described in the <a href=
92 private final String protocol; field in class:SSLContext
99 * @param protocol the protocol
102 String protocol) {
105 this.protocol = protocol;
160 * specified secure socket protocol.
166 * Provider that supports the specified protocol i
101 SSLContext(SSLContextSpi contextSpi, Provider provider, String protocol) argument
187 getInstance(String protocol) argument
230 getInstance(String protocol, String provider) argument
267 getInstance(String protocol, Provider provider) argument
[all...]
/libcore/ojluni/src/main/java/sun/net/spi/
H A DDefaultProxySelector.java46 * provides backward compatibility with the old http protocol handler
49 * Most of the implementation copied from the old http protocol handler
59 * support for each given protocol.
61 * - 1 row per protocol (http, ftp, ...)
62 * - 1st element of each row is the protocol name
77 * protocol, Property prefix 1, Property prefix 2, ...
93 * it's not necessary. Therefore we do cache the result, on a per-protocol
131 String protocol = uri.getScheme();
157 if (protocol == null || host == null) {
158 throw new IllegalArgumentException("protocol
312 defaultPort(String protocol) argument
[all...]

Completed in 524 milliseconds

123