/external/wpa_supplicant_8/src/tls/ |
D | tlsv1_server.c | 381 u16 *suites; in tlsv1_server_init() local 399 suites = conn->cipher_suites; in tlsv1_server_init() 400 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA256; in tlsv1_server_init() 401 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA256; in tlsv1_server_init() 402 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA; in tlsv1_server_init() 403 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA; in tlsv1_server_init() 404 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA256; in tlsv1_server_init() 405 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA256; in tlsv1_server_init() 406 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA; in tlsv1_server_init() 407 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA; in tlsv1_server_init() [all …]
|
D | tlsv1_client.c | 445 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/ |
D | base.js | 70 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/testng/src/main/java/org/testng/reporters/ |
D | EmailableReporter.java | 57 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/curl/docs/ |
D | CIPHERS.md | 24 ### SSL3 cipher suites 39 ### TLS v1.0 cipher suites 83 ### Elliptic curve cipher suites 101 ### TLS v1.2 cipher suites 156 ### TLS 1.3 cipher suites 178 ### SSL3/TLS cipher suites 236 ### HMAC-SHA256 cipher suites 246 ### AES GCM cipher suites in RFC 5288 and RFC 5289 256 ### cipher suites using SHA384 266 ### chacha20-poly1305 cipher suites [all …]
|
/external/testng/src/main/java/org/testng/remote/ |
D | RemoteTestNG.java | 71 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()
|
D | SuiteSlave.java | 83 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/ |
D | AlterSuiteListenerTest.java | 61 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/curl/docs/cmdline-opts/ |
D | tls13-ciphers.d | 3 help: TLS 1.3 cipher suites to use 6 Specifies which cipher suites to use in the connection if it negotiates TLS 7 1.3. The list of ciphers suites must specify valid ciphers. Read up on TLS 1.3
|
D | proxy-tls13-ciphers.d | 3 help: TLS 1.3 proxy cipher suites 6 Specifies which cipher suites to use in the connection to your HTTPS proxy 7 when it negotiates TLS 1.3. The list of ciphers suites must specify valid
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | FallbackTestClientSocketFactory.java | 53 @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/ |
D | OverrideProcessor.java | 26 public Collection<XmlSuite> process(Collection<XmlSuite> suites) { in process() argument 27 for (XmlSuite s : suites) { in process() 43 return suites; in process()
|
/external/google-fruit/extras/benchmark/ |
D | README.md | 7 ### Benchmark suites 9 The `suites` folder contains suites of Fruit (or Fruit-related) benchmarks that can be run using `r… 15 --benchmark-definition ~/projects/fruit/extras/benchmark/suites/fruit_full.yml 24 The following benchmark suites are defined: 44 Note that there *isn't* a 1:1 mapping between benchmark suites and benchmark tables; the same table… 45 used with multiple benchmark suites (for example, a full suite and a quick variant that only has a …
|
/external/v8/tools/testrunner/ |
D | num_fuzzer.py | 184 suites = super(NumFuzzer, self)._load_suites(names, options) 186 suites = [s for s in suites if s.test_combiner_available()] 189 for suite in suites: 191 return suites
|
D | base_runner.py | 250 suites = self._get_suites(args, options) 251 self._prepare_suites(suites, options) 257 tests = [t for s in suites for t in s.tests] 604 def _prepare_suites(self, suites, options): argument 605 self._load_status_files(suites, options) 606 for s in suites: 609 def _load_status_files(self, suites, options): argument 612 for s in suites: 684 def _do_execute(self, suites, args, options): argument
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/ |
D | run_tests | 127 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/ |
D | IncludedExcludedTest.java | 64 …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/libdrm/tests/amdgpu/ |
D | amdgpu_test.c | 70 static CU_SuiteInfo suites[] = { variable 185 for (iSuite = 0; suites[iSuite].pName != NULL; iSuite++) { in display_test_suites() 196 iSuite + 1, suites[iSuite].pName, in display_test_suites() 201 for (iTest = 0; suites[iSuite].pTests[iTest].pName != NULL; in display_test_suites() 213 suites[iSuite].pTests[iTest].pName, in display_test_suites() 545 if (CU_register_suites(suites) != CUE_SUCCESS) { in main()
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | lit.pod | 13 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/ |
D | TestNG.java | 336 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/ |
D | TestHelper.java | 52 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/ |
D | test_ctypes.py | 11 suites = [unittest.makeSuite(t) for t in testcases] 12 run_unittest(unittest.TestSuite(suites))
|
/external/autotest/venv/skylab_suite/ |
D | README.md | 6 doc](http://goto.google.com/chromeos-skylab-suites). 29 $ bin/run_suite_skylab --pool=suites --board=nyan_blaze --suite_name=sanity 37 --suite_name provision --pool suites --priority 50 --timeout_min 30 --test_retry
|
/external/conscrypt/ |
D | CAPABILITIES.md | 63 The above cipher suites are enabled by default when the associated version of 64 the protocol is enabled. The TLS 1.3 cipher suites cannot be customized; they 79 The above cipher suites are supported, but not enabled by default. TLS 1.3 80 cipher suites cannot be customized, so there are no cipher suites that are
|
/external/toolchain-utils/automation/ |
D | all_tests.py | 13 suites = [unittest.defaultTestLoader.loadTestsFromName(str) variable 15 testSuite = unittest.TestSuite(suites)
|