Home
last modified time | relevance | path

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

1234567

/external/wpa_supplicant_8/src/tls/
Dtlsv1_server.c378 u16 *suites; in tlsv1_server_init() local
396 suites = conn->cipher_suites; in tlsv1_server_init()
397 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA256; in tlsv1_server_init()
398 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA256; in tlsv1_server_init()
399 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA; in tlsv1_server_init()
400 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA; in tlsv1_server_init()
401 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA256; in tlsv1_server_init()
402 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA256; in tlsv1_server_init()
403 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA; in tlsv1_server_init()
404 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA; in tlsv1_server_init()
[all …]
Dtlsv1_client.c445 u16 *suites; in tlsv1_client_init() local
461 suites = conn->cipher_suites; in tlsv1_client_init()
462 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA256; in tlsv1_client_init()
463 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA256; in tlsv1_client_init()
464 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA; in tlsv1_client_init()
465 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA; in tlsv1_client_init()
466 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA256; in tlsv1_client_init()
467 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA256; in tlsv1_client_init()
468 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA; in tlsv1_client_init()
469 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA; in tlsv1_client_init()
[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/v8/tools/testrunner/network/
Dendpoint.py91 suites = []
97 suites.append(suite)
100 for s in suites:
108 suites = [ s for s in suites if len(s.tests) > 0 ]
109 for s in suites:
113 runner = execution.Runner(suites, progress_indicator, ctx)
Dnetwork_execution.py53 def __init__(self, suites, progress_indicator, context, peers, workspace): argument
54 self.suites = suites
60 for s in suites:
63 self._CommonInit(suites, progress_indicator, context)
115 for s in self.suites:
140 distro.Assign(self.suites, self.peers)
Ddistro.py43 def Assign(suites, peers): argument
45 for s in suites:
56 for s in suites:
/external/curl/docs/
DCIPHERS.md13 ### SSL3 cipher suites
28 ### TLS v1.0 cipher suites
72 ### Elliptic curve cipher suites
90 ### TLS v1.2 cipher suites
157 ### SSL3/TLS cipher suites
215 ### HMAC-SHA256 cipher suites
225 ### AES GCM cipher suites in RFC 5288 and RFC 5289
235 ### cipher suites using SHA384
245 ### chacha20-poly1305 cipher suites
256 ### SSL2 cipher suites (insecure: disabled by default)
[all …]
/external/testng/src/main/java/org/testng/reporters/
DEmailableReporter.java57 public void generateReport(List<XmlSuite> xml, List<ISuite> suites, String outdir) { in generateReport() argument
66 generateSuiteSummaryReport(suites); in generateReport()
67 generateMethodSummaryReport(suites); in generateReport()
68 generateMethodDetailReport(suites); in generateReport()
81 protected void generateMethodSummaryReport(List<ISuite> suites) { in generateMethodSummaryReport() argument
85 for (ISuite suite : suites) { in generateMethodSummaryReport()
86 if(suites.size()>1) { in generateMethodSummaryReport()
111 protected void generateMethodDetailReport(List<ISuite> suites) { in generateMethodDetailReport() argument
113 for (ISuite suite : suites) { in generateMethodDetailReport()
341 public void generateSuiteSummaryReport(List<ISuite> suites) { in generateSuiteSummaryReport() argument
[all …]
/external/v8/tools/
Drun-deopt-fuzzer.py316 suites = []
321 suites.append(suite)
324 for s in suites:
330 code = Execute(arch, mode, args, options, suites, BASE_DIR)
348 def Execute(arch, mode, args, options, suites, workspace): argument
414 test_backup = dict((s, []) for s in suites)
416 for s in suites:
438 runner = execution.Runner(suites, progress_indicator, ctx)
445 for s in suites:
485 runner = execution.Runner(suites, progress_indicator, ctx)
Drun-tests.py710 suites = []
715 suites.append(suite)
718 for s in suites:
724 for s in suites:
729 code = Execute(arch, mode, args, options, suites)
736 def Execute(arch, mode, args, options, suites): argument
818 for s in suites:
903 runner = network_execution.NetworkedRunner(suites, progress_indicator,
906 runner = execution.Runner(suites, progress_indicator, ctx)
912 verbose.PrintTestDurations(suites, overall_duration)
/external/testng/src/main/java/org/testng/remote/
DRemoteTestNG.java71 private void calculateAllSuites(List<XmlSuite> suites, List<XmlSuite> outSuites) { in calculateAllSuites() argument
72 for (XmlSuite s : suites) { in calculateAllSuites()
92 List<XmlSuite> suites = Lists.newArrayList(); in run() local
93 calculateAllSuites(m_suites, suites); in run()
96 if(suites.size() > 0) { in run()
100 for (XmlSuite suite : suites) { in run()
105 gm.setSuiteCount(suites.size()); in run()
DSuiteSlave.java83 List<XmlSuite> suites = Lists.newArrayList(); in waitForSuites() local
84 suites.add(s); in waitForSuites()
85 m_testng.setXmlSuites(suites); in waitForSuites()
/external/testng/src/test/java/test/listeners/
DAlterSuiteListenerTest.java61 public void alter(List<XmlSuite> suites) { in alter() argument
62 XmlSuite suite = suites.get(0); in alter()
71 public void alter(List<XmlSuite> suites) { in alter() argument
72 XmlSuite suite = suites.get(0); in alter()
/external/v8/tools/testrunner/local/
Dexecution.py73 suites = {}
80 suites[suite.name] = suite
81 return ProcessContext(suites, context)
175 self.test.SetSuiteObject(process_context.suites)
192 def __init__(self, suites, progress_indicator, context): argument
199 self.tests = [ t for s in suites for t in s.tests ]
211 self._CommonInit(suites, progress_indicator, context)
213 def _CommonInit(self, suites, progress_indicator, context): argument
215 for s in suites:
/external/libdrm/tests/amdgpu/
Damdgpu_test.c63 static CU_SuiteInfo suites[] = { variable
100 for (iSuite = 0; suites[iSuite].pName != NULL; iSuite++) { in display_test_suites()
102 iSuite + 1, suites[iSuite].pName); in display_test_suites()
104 for (iTest = 0; suites[iSuite].pTests[iTest].pName != NULL; in display_test_suites()
107 suites[iSuite].pTests[iTest].pName); in display_test_suites()
390 if (CU_register_suites(suites) != CUE_SUCCESS) { in main()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DFallbackTestClientSocketFactory.java53 @Override public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() argument
54 List<String> enabledCipherSuites = new ArrayList<String>(suites.length); in setEnabledCipherSuites()
55 for (String suite : suites) { in setEnabledCipherSuites()
/external/testng/src/main/java/org/testng/internal/
DOverrideProcessor.java26 public Collection<XmlSuite> process(Collection<XmlSuite> suites) { in process() argument
27 for (XmlSuite s : suites) { in process()
43 return suites; in process()
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
Drun_tests127 suites = discover('trace_event_impl', args)
129 suites = discover('trace_event_impl', ['.*'])
133 res = r.run(suites)
139 for s in suites:
/external/testng/src/test/java/test/simple/
DIncludedExcludedTest.java64 …public void generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites, String outputDirectory) { in generateReport() argument
65 Assert.assertEquals(suites.size(), 1); in generateReport()
66 ISuite suite = suites.get(0); in generateReport()
/external/swiftshader/third_party/LLVM/docs/CommandGuide/
Dlit.pod13 B<lit> is a portable tool for executing LLVM and Clang style test suites,
57 Search for I<NAME.cfg> and I<NAME.site.cfg> when searching for test suites,
144 =item B<--show-suites>
146 List the discovered test suites as part of the standard output.
174 resolves the inputs specified on the command line to test suites by searching
176 file. These files serve as both a marker of test suites and as configuration
180 Once B<lit> has mapped the inputs into test suites it traverses the list of
241 defined by I<test suites>.
246 suite>. Test suites serve to define the format of the tests they contain, the
249 B<lit> identifies test suites as directories containing I<lit.cfg> or
[all …]
/external/testng/src/main/java/org/testng/
DTestNG.java336 StringBuilder suites = new StringBuilder(); in initializeSuitesAndJarFile() local
338 suites.append(s); in initializeSuitesAndJarFile()
341 + suites + " instead"); in initializeSuitesAndJarFile()
364 Collection<XmlSuite> suites = parser.parse(); in initializeSuitesAndJarFile() local
365 for (XmlSuite suite : suites) { in initializeSuitesAndJarFile()
573 Map<String, XmlSuite> suites = Maps.newHashMap(); in createCommandLineSuitesForClasses() local
591 XmlSuite xmlSuite = suites.get(suiteName); in createCommandLineSuitesForClasses()
595 suites.put(suiteName, xmlSuite); in createCommandLineSuitesForClasses()
618 return new ArrayList<>(suites.values()); in createCommandLineSuitesForClasses()
640 public void setTestSuites(List<String> suites) { in setTestSuites() argument
[all …]
/external/testng/src/test/java/test/
DTestHelper.java52 List<XmlSuite> suites = Lists.newArrayList(); in createTestNG() local
53 suites.add(suite); in createTestNG()
54 result.setXmlSuites(suites); in createTestNG()
/external/python/cpython2/Lib/test/
Dtest_ctypes.py11 suites = [unittest.makeSuite(t) for t in testcases]
12 run_unittest(unittest.TestSuite(suites))
/external/toolchain-utils/automation/
Dall_tests.py13 suites = [unittest.defaultTestLoader.loadTestsFromName(str) variable
15 testSuite = unittest.TestSuite(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`.
163 .. option:: --show-suites
165 List the discovered test suites and exit.
190 :program:`lit` resolves the inputs specified on the command line to test suites
192 :file:`lit.site.cfg` file. These files serve as both a marker of test suites
196 Once :program:`lit` has mapped the inputs into test suites it traverses the
259 defined by *test suites*.
265 suite*. Test suites serve to define the format of the tests they contain, the
268 :program:`lit` identifies test suites as directories containing ``lit.cfg`` or
[all …]

1234567