/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
SSLEngineTest.java | 47 String[] suites = { "a", "b", "c" }; local 48 e.setEnabledCipherSuites(suites); 49 assertEquals(e.getEnabledCipherSuites().length, suites.length); 75 String[] suites = { "a", "b", "c" }; local 76 e.setEnabledCipherSuites(suites); 77 assertEquals(e.getEnabledCipherSuites().length, suites.length); 454 public void setEnabledCipherSuites(String[] suites) { 455 enabledCipherSuites = suites;
|
SSLServerSocketTest.java | 105 public void setEnabledCipherSuites(String[] suites) {
|
SSLSocketTest.java | 141 public void setEnabledCipherSuites(String[] suites) {
|
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
XmlGenerator.java | 139 Collection<TestSuite> suites = parser.parse(System.in); local 141 writeTestSuites(writer, suites, nameCollector); 145 private void writeTestSuites(PrintWriter writer, Collection<TestSuite> suites, 147 Collection<TestSuite> sorted = sortCollection(suites);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
bencher | 257 puts "suites." [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLServerSocketImpl.java | 131 * This method enables the cipher suites listed by 134 * @param suites the names of all the cipher suites to enable 136 * suites are not supported, or when the array is null. 139 public void setEnabledCipherSuites(String[] suites) { 140 enabledCipherSuites = NativeCrypto.checkEnabledCipherSuites(suites); 189 * Check if any of the enabled cipher suites has a chance to work. 193 /* Loop over all enabled cipher suites. If we find a problem, 233 + "to support the enabled cipher suites.");
|
SSLEngineImpl.java | 191 * Returns names of supported cipher suites. 192 * @return array of strings containing the names of supported cipher suites 219 public void setEnabledCipherSuites(String[] suites) { 220 sslParameters.setEnabledCipherSuites(suites);
|
SSLSocketImpl.java | 66 // about supported and enabled cipher suites and protocols, 261 public void setEnabledCipherSuites(String[] suites) { 262 sslParameters.setEnabledCipherSuites(suites);
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLSocket.java | 138 * Returns the names of the supported cipher suites. 143 * Returns the names of the enabled cipher suites. 148 * Sets the names of the cipher suites to be enabled. 149 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are 152 * @param suites 153 * the names of the to be enabled cipher suites. 157 public abstract void setEnabledCipherSuites(String[] suites); 293 * cipher suites, protocols, and client authentication settings. 309 * suites if the parameter's cipher suites are non-null. Similarl [all...] |
SSLEngine.java | 167 * These cipher suites can be enabled using 217 * instance. Only cipher suites listed by {@code getSupportedCipherSuites()} 220 * @param suites 223 * if one of the specified cipher suites is not supported, or if 224 * {@code suites} is {@code null}. 226 public abstract void setEnabledCipherSuites(String[] suites); 467 * cipher suites, protocols, and client authentication settings. 483 * suites if the parameter's cipher suites are non-null. Similarly
|
/libcore/crypto/src/test/java/org/conscrypt/ |
CipherSuiteTest.java | 116 CipherSuite[] suites = CipherSuite.getSupported(); local 117 List<String> names = new ArrayList<String>(suites.length); 118 for (CipherSuite cs : suites) {
|
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/ |
MySSLContextSpi.java | 149 public void setEnabledCipherSuites(String[] suites) { }
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
MySSLContextSpi.java | 142 public void setEnabledCipherSuites(String[] suites) { }
|
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
MySSLContextSpi.java | 140 public void setEnabledCipherSuites(String[] suites) { }
|
/external/chromium_org/v8/tools/testrunner/local/ |
execution.py | 73 def __init__(self, suites, progress_indicator, context): 74 self.tests = [ t for s in suites for t in s.tests ]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 192 suites = [unittest.makeSuite(o) for o in testcases] 193 suite = unittest.TestSuite(suites)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 192 suites = [unittest.makeSuite(o) for o in testcases] 193 suite = unittest.TestSuite(suites)
|
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/ |
MySSLContextSpi.java | 157 public void setEnabledCipherSuites(String[] suites) { }
|
/external/chromium_org/build/android/buildbot/ |
bb_device_steps.py | 104 def RunTestSuites(options, suites): 109 suites: List of suite names to run. 116 for suite in suites: 349 help=('Run a test suite. Test suites: "%s"' %
|
/cts/tools/utils/ |
DescriptionGenerator.java | 305 * the name of the two test suites. 392 ArrayList<Node> suites = new ArrayList<Node>(); local 399 suites.add(child); 403 return suites;
|
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
SSLEngineTest.java | 65 String[] suites = e.getSupportedCipherSuites(); local 66 e.setEnabledCipherSuites(suites); 67 assertEquals(e.getEnabledCipherSuites().length, suites.length); 112 String[] suites = e.getSupportedCipherSuites(); local 113 e.setEnabledCipherSuites(suites); 114 assertEquals(e.getEnabledCipherSuites().length, suites.length); 199 * javax.net.ssl.SSLEngine#setEnabledCipherSuites(String[] suites) [all...] |
SSLServerSocketTest.java | 66 public void setEnabledCipherSuites(String[] suites) { 204 assertTrue("no supported cipher suites available.", res.length > 0); 210 * javax.net.ssl.SSLServerSocket#setEnabledCipherSuites(String[] suites) 226 assertTrue("No supported cipher suites", count > 0); 230 assertEquals("not all supported cipher suites were enabled",
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
loader.py | 148 suites = [self.loadTestsFromName(name, module) for name in names] 149 return self.suiteClass(suites) 246 """Used by discovery. Yields test suites it loads."""
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 128 suites = [self.loadTestsFromName(name, module) for name in names] 129 return self.suiteClass(suites) 238 """Used by discovery. Yields test suites it loads."""
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 128 suites = [self.loadTestsFromName(name, module) for name in names] 129 return self.suiteClass(suites) 238 """Used by discovery. Yields test suites it loads."""
|