HomeSort by relevance Sort by last modified time
    Searched refs:suites (Results 26 - 50 of 145) sorted by null

12 3 4 5 6

  /external/autotest/server/site_tests/native_Benchmarks/
native_Benchmarks.py 17 # Benchmark suites
18 suites = { variable
45 results = suites[name](scratch_srv, scratch_cli, client, flags).run()
  /external/testng/src/test/java/test/multiplelisteners/
TestMaker.java 23 final List<XmlSuite> suites = createSuites(); local
24 tng.setXmlSuites(suites);
29 // for (final XmlSuite xmlSuite : suites)
  /external/testng/src/main/java/org/testng/remote/
RemoteTestNG.java 71 private void calculateAllSuites(List<XmlSuite> suites, List<XmlSuite> outSuites) {
72 for (XmlSuite s : suites) {
92 List<XmlSuite> suites = Lists.newArrayList(); local
93 calculateAllSuites(m_suites, suites);
94 // System.out.println("Suites: " + m_suites.get(0).getChildSuites().size()
95 // + " and:" + suites.get(0).getChildSuites().size());
96 if(suites.size() > 0) {
100 for (XmlSuite suite : suites) {
105 gm.setSuiteCount(suites.size());
  /external/testng/src/test/java/test/
TestHelper.java 52 List<XmlSuite> suites = Lists.newArrayList(); local
53 suites.add(suite);
54 result.setXmlSuites(suites);
SimpleBaseTest.java 36 protected TestNG create(XmlSuite... suites) {
38 result.setXmlSuites(Arrays.asList(suites));
  /external/v8/tools/testrunner/network/
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
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)
  /external/wpa_supplicant_8/src/tls/
tlsv1_server.c 378 u16 *suites; local
396 suites = conn->cipher_suites;
397 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA256;
398 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA256;
399 suites[count++] = TLS_DHE_RSA_WITH_AES_256_CBC_SHA;
400 suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
401 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA256;
402 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA256;
403 suites[count++] = TLS_DHE_RSA_WITH_AES_128_CBC_SHA;
404 suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA
662 u16 *suites; local
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
ConscryptServerSocket.java 134 * This method enables the cipher suites listed by
137 * @param suites the names of all the cipher suites to enable
139 * suites are not supported, or when the array is null.
142 public void setEnabledCipherSuites(String[] suites) {
143 sslParameters.setEnabledCipherSuites(suites);
  /external/testng/src/test/java/test/reports/
FailedReporterTest.java 41 Collection<XmlSuite> suites = local
43 tng.setXmlSuites(Lists.newArrayList(suites));
  /external/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
execution.py 61 "process_context", ["suites", "context"])
67 This reloads all suites per process and stores the global context.
73 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):
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)
    [all...]
  /external/libdrm/tests/amdgpu/
amdgpu_test.c 62 /** The table of all known test suites to run */
63 static CU_SuiteInfo suites[] = { variable
92 /** Display information about all suites and their tests */
98 printf("Suites\n");
100 for (iSuite = 0; suites[iSuite].pName != NULL; iSuite++) {
102 iSuite + 1, suites[iSuite].pName);
104 for (iTest = 0; suites[iSuite].pTests[iTest].pName != NULL;
107 suites[iSuite].pTests[iTest].pName);
118 " l - Display all suites and their tests\n"
381 /* Initialize test suites to run *
    [all...]
  /external/v8/tools/
run-deopt-fuzzer.py 316 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):
389 # Find available test suites and read test cases from them.
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
    [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...]
  /external/testng/src/main/java/org/testng/reporters/
EmailableReporter.java 57 public void generateReport(List<XmlSuite> xml, List<ISuite> suites, String outdir) {
66 generateSuiteSummaryReport(suites);
67 generateMethodSummaryReport(suites);
68 generateMethodDetailReport(suites);
81 protected void generateMethodSummaryReport(List<ISuite> suites) {
85 for (ISuite suite : suites) {
86 if(suites.size()>1) {
111 protected void generateMethodDetailReport(List<ISuite> suites) {
113 for (ISuite suite : suites) {
341 public void generateSuiteSummaryReport(List<ISuite> suites) {
    [all...]
JqReporter.java 29 public void generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites,
34 xsb.push(D, "id", "suites");
35 generateSuites(xmlSuites, suites, xsb);
49 List<ISuite> suites, XMLStringBuffer main) {
50 for (ISuite suite : suites) {
  /external/testng/src/main/java/org/testng/
Converter.java 42 private void findAllSuites(Collection<XmlSuite> suites, Set<XmlSuite> result) {
43 for (XmlSuite s : suites) {
  /external/testng/src/main/java/org/testng/reporters/jq/
Main.java 30 public void generateReport(List<XmlSuite> xmlSuites, List<ISuite> suites,
32 m_model = new Model(suites);
  /external/v8/tools/testrunner/objects/
testcase.py 71 def SetSuiteObject(self, suites):
72 self.suite = suites[self.suite]
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
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:
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLServerSocket.java 47 * suites and protocols, whether client
186 * Returns the list of cipher suites which are currently enabled
191 * cipher suites.
200 * @return an array of cipher suites enabled
208 * Sets the cipher suites enabled for use by accepted connections.
210 * The cipher suites must have been listed by getSupportedCipherSuites()
212 * only suites listed in the <code>suites</code> parameter are enabled
215 * Suites that require authentication information which is not available
222 * @param suites Names of all the cipher suites to enabl
    [all...]
SSLSocket.java 84 * <P>There are two groups of cipher suites which you will need to know
85 * about when managing cipher suites: <UL>
87 * <LI> <em>Supported</em> cipher suites: all the suites which are
91 * <LI> <em>Enabled</em> cipher suites, which may be fewer
92 * than the full set of supported suites. This group is
95 * Initially, a default set of cipher suites will be enabled on
101 * suites which authenticate servers and provide confidentiality
109 * preferences: what cipher suites to use, whether the socket should be
212 * <h4>Cipher suites</h4
    [all...]
  /tools/tradefederation/core/atest/test_finders/
module_finder.py 42 # These are suites in LOCAL_COMPATIBILITY_SUITE that aren't really suites so
125 suites = []
127 suites = mod_info.get('compatibility_suites', [])
128 # Pull out all *ts (cts, tvts, etc) suites.
129 suites = [suite for suite in suites if suite not in _SUITES_TO_IGNORE]
130 return len(suites) == 1 and 'vts' in suites
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
v4l2_test.c 441 static CU_SuiteInfo suites[] = { variable
469 err = CU_register_suites(suites);
481 printf("ERROR: cannot add test suites\n");

Completed in 2203 milliseconds

12 3 4 5 6