/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ctypes.py | 11 suites = [unittest.makeSuite(t) for t in testcases] 12 run_unittest(unittest.TestSuite(suites))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ctypes.py | 11 suites = [unittest.makeSuite(t) for t in testcases] 12 run_unittest(unittest.TestSuite(suites))
|
/external/chromium_org/third_party/tlslite/tlslite/ |
constants.py | 118 suites = [] 121 suites.append(CipherSuite.TLS_SRP_SHA_WITH_AES_128_CBC_SHA) 123 suites.append(CipherSuite.TLS_SRP_SHA_WITH_AES_256_CBC_SHA) 125 suites.append(CipherSuite.TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA) 126 return suites 134 suites = [] 137 suites.append(CipherSuite.TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA) 139 suites.append(CipherSuite.TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA) 141 suites.append(CipherSuite.TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA) 142 return suites [all...] |
/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...] |
/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/v8/tools/testrunner/network/ |
endpoint.py | 91 suites = [] 96 suites.append(suite) 99 for s in suites: 107 suites = [ s for s in suites if len(s.tests) > 0 ] 108 for s in suites: 112 runner = execution.Runner(suites, progress_indicator, ctx)
|
distro.py | 43 def Assign(suites, peers): 45 for s in suites: 56 for s in suites:
|
network_execution.py | 53 def __init__(self, suites, progress_indicator, context, peers, workspace): 54 self.suites = suites 59 for s in suites: 115 for s in self.suites: 140 distro.Assign(self.suites, self.peers)
|
/external/wpa_supplicant_8/src/tls/ |
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...] |
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...] |
/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...] |
/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];
|
/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/ |
make-hosted | 40 my @suites = ("sunspider-0.9", "sunspider-0.9.1", "sunspider-1.0"); 42 foreach my $suite (@suites) {
|
/external/chromium_org/third_party/WebKit/Tools/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 | 94 * Returns the names of the enabled cipher suites to be used for new 97 * @return the names of the enabled cipher suites to be used for new 103 * Sets the names of the cipher suites to be enabled for new connections. 104 * Only cipher suites returned by {@link #getSupportedCipherSuites()} are 107 * @param suites 108 * the names of the to be enabled cipher suites. 112 public abstract void setEnabledCipherSuites(String[] suites); 115 * Returns the names of the supported cipher suites. 117 * @return the names of the supported cipher suites.
|
/external/chromium_org/v8/tools/testrunner/local/ |
verbose.py | 87 def PrintTestDurations(suites, overall_time): 92 timed_tests = [ t for s in suites for t in s.tests
|
/external/chromium_org/v8/tools/testrunner/objects/ |
testcase.py | 65 def SetSuiteObject(self, suites): 66 self.suite = suites[self.suite]
|
/libcore/crypto/src/main/java/org/conscrypt/ |
SSLServerSocketImpl.java | 32 // about supported and enabled cipher suites and protocols, 120 public void setEnabledCipherSuites(String[] suites) { 121 sslParameters.setEnabledCipherSuites(suites);
|
SSLParametersImpl.java | 36 * about enabled cipher suites and protocols, 66 // cipher suites available for SSL connection 68 // string representations of available cipher suites 207 * @return the names of enabled cipher suites 221 * Sets the set of available cipher suites for use in SSL connection. 222 * @param suites: String[] 225 protected void setEnabledCipherSuites(String[] suites) { 226 if (suites == null) { 227 throw new IllegalArgumentException("suites == null"); 229 CipherSuite[] cipherSuites = new CipherSuite[suites.length] [all...] |
/external/chromium_org/v8/tools/ |
run-deopt-fuzzer.py | 302 suites = [] 307 suites.append(suite) 310 for s in suites: 315 code = Execute(arch, mode, args, options, suites, workspace) 331 def Execute(arch, mode, args, options, suites, workspace): 363 # Find available test suites and read test cases from them. 376 test_backup = dict((s, []) for s in suites) 378 for s in suites: 401 runner = execution.Runner(suites, progress_indicator, ctx) 413 for s in suites [all...] |
run-tests.py | 259 suites = [] 264 suites.append(suite) 267 for s in suites: 272 code = Execute(arch, mode, args, options, suites, workspace) 277 def Execute(arch, mode, args, options, suites, workspace): 307 # Find available test suites and read test cases from them. 318 for s in suites: 374 runner = network_execution.NetworkedRunner(suites, progress_indicator, 377 runner = execution.Runner(suites, progress_indicator, ctx) 387 verbose.PrintTestDurations(suites, overall_duration [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
base.js | 29 // Simple framework for running the benchmark suites and 63 // Suites of benchmarks consist of a name and the set of benchmarks in 71 BenchmarkSuite.suites.push(this); 75 // Keep track of all declared benchmark suites. 76 BenchmarkSuite.suites = []; 106 // Runs all registered benchmark suites and optionally yields between 112 var suites = BenchmarkSuite.suites; 113 var length = suites.length; 121 var suite = suites[index++] [all...] |
/external/chromium_org/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...] |
/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...] |