HomeSort by relevance Sort by last modified time
    Searched refs:SNIServerName (Results 1 - 16 of 16) sorted by null

  /external/conscrypt/src/stub/java/javax/net/ssl/
SNIServerName.java 22 public class SNIServerName {
23 protected SNIServerName() {
SNIHostName.java 22 public final class SNIHostName extends SNIServerName {
ExtendedSSLSession.java 20 import javax.net.ssl.SNIServerName;
35 public List<SNIServerName> getRequestedServerNames() {
  /libcore/ojluni/src/main/java/javax/net/ssl/
ExtendedSSLSession.java 90 * Obtains a {@link List} containing all {@link SNIServerName}s
103 * @return a non-null immutable list of {@link SNIServerName}s of the
109 * @see SNIServerName
115 public List<SNIServerName> getRequestedServerNames() {
SNIMatcher.java 30 * operations on an {@link SNIServerName} instance.
44 * @see SNIServerName
82 * @see SNIServerName
89 * Attempts to match the given {@link SNIServerName}.
92 * the {@link SNIServerName} instance on which this matcher
102 * @see SNIServerName
104 public abstract boolean matches(SNIServerName serverName);
SNIServerName.java 39 * {@code SNIServerName} objects are immutable. Subclasses should not provide
47 public abstract class SNIServerName {
59 * Creates an {@code SNIServerName} using the specified name type and
74 protected SNIServerName(int type, byte[] encoded) {
127 SNIServerName that = (SNIServerName)other;
152 * {@code SNIServerName} object.
SSLParameters.java 74 private Map<Integer, SNIServerName> sniNames = null;
271 * Sets the desired {@link SNIServerName}s of the Server Name
281 * the list of desired {@link SNIServerName}s (or null)
288 * @see SNIServerName
293 public final void setServerNames(List<SNIServerName> serverNames) {
297 for (SNIServerName serverName : serverNames) {
306 sniNames = Collections.<Integer, SNIServerName>emptyMap();
314 * Returns a {@link List} containing all {@link SNIServerName}s of the
344 * @return null or an immutable list of non-null {@link SNIServerName}s
351 public final List<SNIServerName> getServerNames()
    [all...]
SNIHostName.java 55 * @see SNIServerName
60 public final class SNIHostName extends SNIServerName {
347 * Attempts to match the given {@link SNIServerName}.
350 * the {@link SNIServerName} instance on which this matcher
360 * @see SNIServerName
363 public boolean matches(SNIServerName serverName) {
366 "The SNIServerName argument cannot be null");
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLParametersTest.java 25 import javax.net.ssl.SNIServerName;
117 ArrayList<SNIServerName> dupeNames = new ArrayList<SNIServerName>();
118 dupeNames.add((SNIServerName) new SNIHostName("www.example.com"));
119 dupeNames.add((SNIServerName) new SNIHostName("www.example.com"));
130 (SNIServerName) new SNIHostName("www.example.com")));
138 p.setServerNames(new ArrayList<SNIServerName>());
139 Collection<SNIServerName> actual = p.getServerNames();
147 (SNIServerName) new SNIHostName("www.example.com")));
148 Collection<SNIServerName> actual = p.getServerNames()
    [all...]
SSLSocketTest.java 60 import javax.net.ssl.SNIServerName;
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLExtendedSessionImpl.java 24 import javax.net.ssl.SNIServerName;
69 public List<SNIServerName> getRequestedServerNames() {
75 return Collections.<SNIServerName> singletonList(new SNIHostName(requestedServerName));
  /external/conscrypt/src/openjdk/java/org/conscrypt/
Platform.java 37 import javax.net.ssl.SNIServerName;
109 List<SNIServerName> serverNames = params.getServerNames();
111 for (SNIServerName serverName : serverNames) {
125 params.setServerNames(Collections.<SNIServerName> singletonList(
  /external/conscrypt/src/platform/java/org/conscrypt/
Platform.java 46 import javax.net.ssl.SNIServerName;
116 List<SNIServerName> serverNames = params.getServerNames();
118 for (SNIServerName serverName : serverNames) {
132 params.setServerNames(Collections.<SNIServerName> singletonList(
  /libcore/
openjdk_java_files.mk     [all...]
  /prebuilts/sdk/24/
android.jar 
  /frameworks/base/
compiled-classes-phone     [all...]

Completed in 327 milliseconds