Home
last modified time | relevance | path

Searched refs:suites (Results 1 – 25 of 67) sorted by relevance

123

/external/linux-tools-perf/
Dbuiltin-bench.c64 struct bench_suite *suites; member
89 for (i = 0; subsystems[subsys_index].suites[i].name; i++) in dump_suites()
91 subsystems[subsys_index].suites[i].name, in dump_suites()
92 subsystems[subsys_index].suites[i].summary); in dump_suites()
146 struct bench_suite *suites = subsys->suites; in all_suite() local
155 for (i = 0; suites[i].fn; i++) { in all_suite()
158 suites[i].name); in all_suite()
160 argv[1] = suites[i].name; in all_suite()
161 suites[i].fn(1, argv, NULL); in all_suite()
169 for (i = 0; subsystems[i].suites; i++) in all_subsystem()
[all …]
/external/chromium_org/third_party/tlslite/tlslite/
Dconstants.py125 suites = []
128 suites.append(CipherSuite.TLS_SRP_SHA_WITH_AES_128_CBC_SHA)
130 suites.append(CipherSuite.TLS_SRP_SHA_WITH_AES_256_CBC_SHA)
132 suites.append(CipherSuite.TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA)
133 return suites
141 suites = []
144 suites.append(CipherSuite.TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA)
146 suites.append(CipherSuite.TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA)
148 suites.append(CipherSuite.TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA)
149 return suites
[all …]
/external/v8/benchmarks/
Dbase.js70 BenchmarkSuite.suites.push(this);
75 BenchmarkSuite.suites = [];
107 var suites = BenchmarkSuite.suites;
108 var length = suites.length;
116 var suite = suites[index++];
139 var suites = BenchmarkSuite.suites;
140 for (var i = 0; i < suites.length; i++) {
141 result += suites[i].benchmarks.length;
/external/chromium_org/v8/benchmarks/
Dbase.js70 BenchmarkSuite.suites.push(this);
75 BenchmarkSuite.suites = [];
107 var suites = BenchmarkSuite.suites;
108 var length = suites.length;
116 var suite = suites[index++];
139 var suites = BenchmarkSuite.suites;
140 for (var i = 0; i < suites.length; i++) {
141 result += suites[i].benchmarks.length;
/external/wpa_supplicant_8/src/tls/
Dtlsv1_server.c345 u16 *suites; in tlsv1_server_init() local
363 suites = conn->cipher_suites; in tlsv1_server_init()
364 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA; in tlsv1_server_init()
365 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA; in tlsv1_server_init()
366 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA; in tlsv1_server_init()
367 suites[count++] = TLS_RSA_WITH_RC4_128_SHA; in tlsv1_server_init()
368 suites[count++] = TLS_RSA_WITH_RC4_128_MD5; in tlsv1_server_init()
582 u16 *suites; in tlsv1_server_set_cipher_list() local
587 suites = conn->cipher_suites; in tlsv1_server_set_cipher_list()
588 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA; in tlsv1_server_set_cipher_list()
[all …]
Dtlsv1_client.c445 u16 *suites; in tlsv1_client_init() local
461 suites = conn->cipher_suites; in tlsv1_client_init()
462 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA256; in tlsv1_client_init()
463 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA; in tlsv1_client_init()
464 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA256; in tlsv1_client_init()
465 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA; in tlsv1_client_init()
466 suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA; in tlsv1_client_init()
467 suites[count++] = TLS_RSA_WITH_RC4_128_SHA; in tlsv1_client_init()
468 suites[count++] = TLS_RSA_WITH_RC4_128_MD5; in tlsv1_client_init()
730 u16 *suites; in tlsv1_client_set_cipher_list() local
[all …]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
DCipherSuiteTest.java50 CipherSuite[] suites = CipherSuite.getSupported(); in testGetByName() local
51 for (int i = 0; i < suites.length; i++) { in testGetByName()
52 assertEquals("incorrect cipher suite returned", suites[i], in testGetByName()
53 CipherSuite.getByName(suites[i].getName())); in testGetByName()
63 CipherSuite[] suites = CipherSuite.getSupported(); in testGetByCodebytebyte() local
64 for (int i = 0; i < suites.length; i++) { in testGetByCodebytebyte()
65 byte[] code = suites[i].toBytes(); in testGetByCodebytebyte()
66 assertEquals("incorrect cipher suite returned", suites[i], in testGetByCodebytebyte()
78 CipherSuite[] suites = CipherSuite.getSupported(); in testGetByCodebytebytebyte() local
79 for (int i = 0; i < suites.length; i++) { in testGetByCodebytebytebyte()
[all …]
/external/chromium_org/v8/tools/testrunner/network/
Dendpoint.py91 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)
Ddistro.py43 def Assign(suites, peers): argument
45 for s in suites:
56 for s in suites:
Dnetwork_execution.py53 def __init__(self, suites, progress_indicator, context, peers, workspace): argument
54 self.suites = suites
59 for s in suites:
115 for s in self.suites:
140 distro.Assign(self.suites, self.peers)
/external/chromium_org/tools/gyp/test/small/
Dgyptest-small.py37 suites = [] variable
46 suites.append(unittest.defaultTestLoader.loadTestsFromModule(module))
48 all_tests = unittest.TestSuite(suites)
/external/chromium_org/v8/tools/
Drun-deopt-fuzzer.py302 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): argument
378 test_backup = dict((s, []) for s in suites)
380 for s in suites:
403 runner = execution.Runner(suites, progress_indicator, ctx)
415 for s in suites:
456 runner = execution.Runner(suites, progress_indicator, ctx)
Drun-tests.py320 suites = []
325 suites.append(suite)
328 for s in suites:
332 code = Execute(arch, mode, args, options, suites, workspace)
337 def Execute(arch, mode, args, options, suites, workspace): argument
383 for s in suites:
442 runner = network_execution.NetworkedRunner(suites, progress_indicator,
445 runner = execution.Runner(suites, progress_indicator, ctx)
455 verbose.PrintTestDurations(suites, overall_duration)
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
DSSLEngineTest.java47 String[] suites = { "a", "b", "c" }; in test01() local
48 e.setEnabledCipherSuites(suites); in test01()
49 assertEquals(e.getEnabledCipherSuites().length, suites.length); in test01()
75 String[] suites = { "a", "b", "c" }; in test03() local
76 e.setEnabledCipherSuites(suites); in test03()
77 assertEquals(e.getEnabledCipherSuites().length, suites.length); in test03()
454 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() argument
455 enabledCipherSuites = suites; in setEnabledCipherSuites()
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
D__init__.py4 suites = [] variable
5 add = registerCase = suites.append
62 for test in suites:
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
Dmake-hosted40 my @suites = ("sunspider-0.9", "sunspider-0.9.1", "sunspider-1.0");
42 foreach my $suite (@suites) {
/external/llvm/docs/CommandGuide/
Dlit.rst13 suites, summarizing their results, and providing indication of failures.
57 test suites, instead of :file:`lit.cfg` and :file:`lit.site.cfg`.
150 .. option:: --show-suites
152 List the discovered test suites as part of the standard output.
178 :program:`lit` resolves the inputs specified on the command line to test suites
180 :file:`lit.site.cfg` file. These files serve as both a marker of test suites
184 Once :program:`lit` has mapped the inputs into test suites it traverses the
247 defined by *test suites*.
253 suite*. Test suites serve to define the format of the tests they contain, the
256 :program:`lit` identifies test suites as directories containing ``lit.cfg`` or
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
Dcheck-dom-results44 my @suites = ( {"name" => "DOM Level 1 Core (html)", "directory" => "dom/html/level1/core"},
60 foreach my $suite (@suites) {
/external/llvm/utils/lit/
DTODO18 - Allow 'lit' driver to cooperate with test suites to add options (or at least
24 - Consider move to change workflow to always load suites, then resolve command
/external/chromium_org/v8/tools/testrunner/local/
Dverbose.py87 def PrintTestDurations(suites, overall_time): argument
92 timed_tests = [ t for s in suites for t in s.tests
Dexecution.py73 def __init__(self, suites, progress_indicator, context): argument
74 self.tests = [ t for s in suites for t in s.tests ]
/external/chromium_org/v8/tools/testrunner/objects/
Dtestcase.py65 def SetSuiteObject(self, suites): argument
66 self.suite = suites[self.suite]
/external/chromium_org/net/third_party/nss/patches/
Dciphersuiteversion.patch16 /* See RFC 4346 A.5. Export cipher suites must not be used in TLS 1.1 or
67 -/* return number of cipher suites that match policy and enabled state */
68 +/* return number of cipher suites that match policy, enabled state and are
148 for (i = 0; i + 1 < suites.len; i += 2) {
Daesgcmchromium.patch63 +/* On this socket, disable the GCM cipher suites */
104 /* how many suites are permitted by policy and user preference? */
/external/linux-tools-perf/Documentation/
Dperf-bench.txt6 perf-bench - General framework for benchmark suites
15 This 'perf bench' command is general framework for benchmark suites.

123