HomeSort by relevance Sort by last modified time
    Searched refs:getSupportedProtocols (Results 1 - 25 of 34) sorted by null

1 2

  /libcore/luni/src/main/java/javax/net/ssl/
SSLServerSocket.java 126 public abstract String[] getSupportedProtocols();
139 * protocols returned by {@link #getSupportedProtocols()} are allowed.
SSLContextSpi.java 145 protocols = s.getSupportedProtocols();
SSLSocket.java 162 public abstract String[] getSupportedProtocols();
171 * protocols returned by {@link #getSupportedProtocols()} are allowed.
SSLEngine.java 180 public abstract String[] getSupportedProtocols();
230 * instance. Only protocols listed by {@code getSupportedProtocols()} are
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLServerSocketImpl.java 33 private String[] enabledProtocols = NativeCrypto.getSupportedProtocols();
78 public String[] getSupportedProtocols() {
79 return NativeCrypto.getSupportedProtocols();
94 * getSupportedProtocols().
SSLServerSocketImpl.java 126 * @see javax.net.ssl.SSLServerSocket#getSupportedProtocols()
130 public String[] getSupportedProtocols() {
OpenSSLSocketImpl.java 783 @Override public String[] getSupportedProtocols() {
784 return NativeCrypto.getSupportedProtocols();
    [all...]
NativeCrypto.java 446 public static String[] getSupportedProtocols() {
    [all...]
SSLEngineImpl.java 226 * @see javax.net.ssl.SSLEngine#getSupportedProtocols() method
230 public String[] getSupportedProtocols() {
SSLSocketImpl.java 230 * @see javax.net.ssl.SSLSocket#getSupportedProtocols()
234 public String[] getSupportedProtocols() {
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLServerSocketTest.java 114 public String[] getSupportedProtocols() {
SSLSocketTest.java 145 public String[] getSupportedProtocols() {
SSLContext1Test.java 478 String[] supportedProtocols = sslSocket.getSupportedProtocols();
SSLEngineTest.java 429 public String[] getSupportedProtocols() {
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLServerSocketTest.java 76 public String[] getSupportedProtocols() {
288 * javax.net.ssl.SSLServerSocket#getSupportedProtocols()
315 int count = sss.getSupportedProtocols().length;
317 sss.setEnabledProtocols(sss.getSupportedProtocols());
SSLSocketTest.java 309 * javax.net.ssl.SSLSocket#getSupportedProtocols()
313 String[] res = ssl.getSupportedProtocols();
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLServerSocketImplTest.java 394 * getSupportedProtocols() method testing.
398 String[] supported = ssocket.getSupportedProtocols();
402 supported = ssocket.getSupportedProtocols();
418 String[] supported = ssocket.getSupportedProtocols();
468 String[] supported = ssocket.getSupportedProtocols();
SSLSocketImplTest.java 471 * getSupportedProtocols() method testing.
475 String[] supported = socket.getSupportedProtocols();
479 supported = socket.getSupportedProtocols();
495 String[] supported = socket.getSupportedProtocols();
540 String[] supported = socket.getSupportedProtocols();
    [all...]
SSLEngineImplTest.java 290 * getSupportedProtocols() method testing.
294 String[] supported = engine.getSupportedProtocols();
298 supported = engine.getSupportedProtocols();
314 String[] supported = engine.getSupportedProtocols();
    [all...]
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
MySSLContextSpi.java 139 public String[] getSupportedProtocols() { return null; }
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLEngineTest.java 168 String[] protocols = e.getSupportedProtocols();
171 assertNotSame(protocols, e.getSupportedProtocols());
205 e.setEnabledProtocols(e.getSupportedProtocols());
409 String[] supportedProtocols = e.getSupportedProtocols();
SSLSocketTest.java 224 String[] protocols = ssl.getSupportedProtocols();
226 assertNotSame(protocols, ssl.getSupportedProtocols());
258 ssl.setEnabledProtocols(ssl.getSupportedProtocols());
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySSLContextSpi.java 137 public String[] getSupportedProtocols() { return null; }
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 135 public String[] getSupportedProtocols() { return null; }
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 147 public String[] getSupportedProtocols() { return null; }

Completed in 380 milliseconds

1 2