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

1 2

  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_server.c 312 u16 *suites; local
330 suites = conn->cipher_suites;
332 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
334 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
335 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
336 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
337 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
541 * tlsv1_server_set_cipher_list - Configure acceptable cipher suites
551 u16 *suites; local
553 /* TODO: implement proper configuration of cipher suites */
    [all...]
tlsv1_client.c 337 u16 *suites; local
353 suites = conn->cipher_suites;
355 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
357 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
358 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
359 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
360 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
600 * tlsv1_client_set_cipher_list - Configure acceptable cipher suites
610 u16 *suites; local
612 /* TODO: implement proper configuration of cipher suites */
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/
mkhtml.pl 22 $suites[$#suites+1] = $_;
26 die ( "Specify a directory: ". join(" ", @suites) ."\n" );
mklistpage.pl 59 $javascript .= "suites = new Object();\n";
61 $html .= "<h3>Test Suites:</h3>\n";
109 $javascript .= "suites[\"$suite\"] = {testDirs: {}};\n";
152 $javascript .= "suites[\"$suite\"].testDirs[\"$test_dir\"] = {tests: {}};\n";
201 $javascript .= "suites[\"$suite\"].testDirs[\"$test_dir\"].tests" .
  /external/webkit/SunSpider/
make-hosted 44 my @suites = ("sunspider-0.9", "sunspider-0.9.1");
46 foreach my $suite (@suites) {
  /external/webkit/WebKitTools/Scripts/
check-dom-results 44 my @suites = ( {"name" => "DOM Level 1 Core (html)", "directory" => "dom/html/level1/core"},
60 foreach my $suite (@suites) {
  /libcore/luni/src/main/java/javax/net/ssl/
SSLServerSocket.java 95 * Returns the names of the enabled cipher suites to be used for new
98 * @return the names of the enabled cipher suites to be used for new
104 * Sets the names of the cipher suites to be enabled for new connections.
105 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
108 * @param suites
109 * the names of the to be enabled cipher suites.
113 public abstract void setEnabledCipherSuites(String[] suites);
116 * Returns the names of the supported cipher suites.
118 * @return the names of the supported cipher suites.
SSLSocket.java 123 * Returns the names of the supported cipher suites.
125 * @return the names of the supported cipher suites.
130 * Returns the names of the enabled cipher suites.
132 * @return the names of the enabled cipher suites.
137 * Sets the names of the cipher suites to be enabled.
138 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are
141 * @param suites
142 * the names of the to be enabled cipher suites.
146 public abstract void setEnabledCipherSuites(String[] suites);
301 * cipher suites, protocols, and client authentication settings
    [all...]
SSLEngine.java 169 * These cipher suites can be enabled using
219 * instance. Only cipher suites listed by {@code getSupportedCipherSuites()}
222 * @param suites
225 * if one of the specified cipher suites is not supported, or if
226 * {@code suites} is {@code null}.
228 public abstract void setEnabledCipherSuites(String[] suites);
469 * cipher suites, protocols, and client authentication settings.
485 * suites if the parameter's cipher suites are non-null. Similarly
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLParametersImpl.java 37 * about enabled cipher suites and protocols,
69 // cipher suites available for SSL connection
73 // string representations of available cipher suites
228 * @return the names of enabled cipher suites
244 * Sets the set of available cipher suites for use in SSL connection.
245 * @param suites: String[]
248 protected void setEnabledCipherSuites(String[] suites) {
249 if (suites == null) {
250 throw new IllegalArgumentException("suites == null");
252 CipherSuite[] cipherSuites = new CipherSuite[suites.length]
    [all...]
SSLServerSocketImpl.java 32 // about supported and enabled cipher suites and protocols,
122 public void setEnabledCipherSuites(String[] suites) {
123 sslParameters.setEnabledCipherSuites(suites);
OpenSSLServerSocketImpl.java 121 * This method enables the cipher suites listed by
124 * @param suites the names of all the cipher suites to enable
126 * suites are not supported, or when the array is null.
129 public void setEnabledCipherSuites(String[] suites) {
130 enabledCipherSuites = NativeCrypto.checkEnabledCipherSuites(suites);
145 * @param suites the names of all the compression methods to enable
147 * suites are not supported, or when the array is null.
199 * Check if any of the enabled cipher suites has a chance to work.
203 /* Loop over all enabled cipher suites. If we find a problem
    [all...]
SSLEngineImpl.java 193 * Returns names of supported cipher suites.
194 * @return array of strings containing the names of supported cipher suites
221 public void setEnabledCipherSuites(String[] suites) {
222 sslParameters.setEnabledCipherSuites(suites);
SSLSocketImpl.java 62 // about supported and enabled cipher suites and protocols,
225 public void setEnabledCipherSuites(String[] suites) {
226 sslParameters.setEnabledCipherSuites(suites);
OpenSSLSocketImpl.java 320 * cipher suites, or initiate a new session. The certificate chain is
    [all...]
  /libcore/luni/src/test/java/com/google/coretests/
XmlReportPrinter.java 70 /** the test suites, which each contain tests */
71 private final Map<String, Suite> suites = new LinkedHashMap<String, Suite>(); field in class:XmlReportPrinter
85 Suite suite = suites.get(test.className);
88 suites.put(test.className, suite);
101 * Populate the list of failures in each of the suites.
107 Suite suite = suites.get(test.className);
132 for (Suite suite : suites.values()) {
157 return suites.size();
  /external/v8/benchmarks/
base.js 29 // Simple framework for running the benchmark suites and
62 // Suites of benchmarks consist of a name and the set of benchmarks in
70 BenchmarkSuite.suites.push(this);
74 // Keep track of all declared benchmark suites.
75 BenchmarkSuite.suites = [];
101 // Runs all registered benchmark suites and optionally yields between
107 var suites = BenchmarkSuite.suites;
108 var length = suites.length;
116 var suite = suites[index++]
    [all...]
  /cts/tools/host/src/com/android/cts/
TestPackage.java 142 * Get test suites under this package.
144 * @return The test suites under this package.
181 * Get all of test suites under this package.
183 * @return All of the test suites under this package.
186 Collection<TestSuite> suites = new ArrayList<TestSuite>(); local
188 suites.addAll(suite.getAllSuites());
190 return suites;
462 //all suites contained have been excluded,
907 Iterator<TestSuite> suites = getTestSuites().iterator(); local
908 while (suites.hasNext() && (!mTestStop))
    [all...]
Selector.java 240 public SuiteSelector(List<String> suites, TestPackage testPackage) {
241 super(SUITE_SELECTOR, suites);
246 * Interact with user to select over 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) { }
  /cts/tools/utils/
DescriptionGenerator.java 293 * the name of the two test suites.
380 ArrayList<Node> suites = new ArrayList<Node>(); local
387 suites.add(child);
391 return suites;
  /external/wpa_supplicant/
tlsv1_client.c 2082 u16 *suites; local
2369 u16 *suites; local
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 76 String[] suites = e.getSupportedCipherSuites(); local
77 e.setEnabledCipherSuites(suites);
78 assertEquals(e.getEnabledCipherSuites().length, suites.length);
135 String[] suites = e.getSupportedCipherSuites(); local
136 e.setEnabledCipherSuites(suites);
137 assertEquals(e.getEnabledCipherSuites().length, suites.length);
260 * @tests javax.net.ssl.SSLEngine#setEnabledCipherSuites(String[] suites)
    [all...]
  /external/bluetooth/glib/glib/
gtestutils.c 57 GSList *suites; member in struct:GTestSuite
963 * the test is assumed to use no fixture, and test suites are automatically
986 * the test is assumed to use no fixture, and test suites are automatically
    [all...]

Completed in 409 milliseconds

1 2