HomeSort by relevance Sort by last modified time
    Searched defs:suites (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/tools/gyp/test/small/
gyptest-small.py 25 # Add new test suites here.
35 # Collect all the suites from the above files.
36 suites = [] variable
44 # Add it to the list of test suites.
45 suites.append(unittest.defaultTestLoader.loadTestsFromModule(module))
47 all_tests = unittest.TestSuite(suites)
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
__init__.py 4 suites = [] variable
5 add = registerCase = suites.append
62 for test in suites:
  /external/linux-tools-perf/
builtin-bench.c 64 struct bench_suite *suites; member in struct:bench_subsys
86 printf("# List of available suites for %s...\n\n",
89 for (i = 0; subsystems[subsys_index].suites[i].name; i++)
91 subsystems[subsys_index].suites[i].name,
92 subsystems[subsys_index].suites[i].summary);
146 struct bench_suite *suites = subsys->suites; local
155 for (i = 0; suites[i].fn; i++) {
158 suites[i].name);
160 argv[1] = suites[i].name
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 71 String[] suites = fullSuite.split("\\."); local
72 int numSuites = suites.length;
76 String name = suites[i];
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/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 50 CipherSuite[] suites = CipherSuite.getSupported(); local
51 for (int i = 0; i < suites.length; i++) {
52 assertEquals("incorrect cipher suite returned", suites[i],
53 CipherSuite.getByName(suites[i].getName()));
63 CipherSuite[] suites = CipherSuite.getSupported(); local
64 for (int i = 0; i < suites.length; i++) {
65 byte[] code = suites[i].toBytes();
66 assertEquals("incorrect cipher suite returned", suites[i],
78 CipherSuite[] suites = CipherSuite.getSupported(); local
79 for (int i = 0; i < suites.length; i++)
107 CipherSuite[] suites = CipherSuite.getSupported(); local
114 CipherSuite[] suites = CipherSuite.getSupported(); local
    [all...]
  /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/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;
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.c 445 u16 *suites; local
461 suites = conn->cipher_suites;
462 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA256;
463 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
464 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA256;
465 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
466 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
467 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
468 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
721 * tlsv1_client_set_cipher_list - Configure acceptable cipher suites
730 u16 *suites; local
    [all...]
tlsv1_server.c 345 u16 *suites; local
363 suites = conn->cipher_suites;
364 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
365 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
366 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
367 suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
368 suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
573 * tlsv1_server_set_cipher_list - Configure acceptable cipher suites
582 u16 *suites; local
584 /* TODO: implement proper configuration of cipher suites */
    [all...]
  /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...]
  /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;
  /external/chromium_org/net/third_party/nss/ssl/
ssl3con.c 85 /* This list of SSL3 cipher suites is sorted in descending order of
86 * precedence (desirability). It only includes cipher suites we implement.
87 * This table is modified by SSL3_SetPolicy(). The ordering of cipher suites
333 /* New TLS cipher suites */
583 /* See RFC 4346 A.5. Export cipher suites must not be used in TLS 1.1 or
584 * later. This set of cipher suites is similar to, but different from, the
585 * set of cipher suites considered exportable by SSL_IsExportCipherSuite.
632 ssl_LookupCipherSuiteCfg(ssl3CipherSuite suite, ssl3CipherSuiteCfg *suites)
637 if (suites[i].cipher_suite == suite)
638 return &suites[i]
7408 SECItem suites = {siBuffer, NULL, 0}; local
8187 unsigned char * suites; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211.c 6308 u32 suites[10]; local
    [all...]

Completed in 319 milliseconds