Searched refs:results (Results 1 – 24 of 24) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/tests/scripts/ |
D | check_test_cases.py | 181 def __init__(self, results): argument 182 self.results = results 191 results = self.results 194 results.error(file_name, line_number, 199 results.error(file_name, line_number, 203 results.error(file_name, line_number, 206 results.warning(file_name, line_number, 227 results = Results(options) 228 checker = DescriptionChecker(results) 232 results.error(e.script_name, e.idx, [all …]
|
D | analyze_outcomes.py | 70 def execute_reference_driver_tests(results: Results, ref_component: str, driver_component: str, \ 75 results.new_section("Test {} and {}", ref_component, driver_component) 79 results.info("Running: {}", shell_command) 83 results.error("failed to run reference/driver components") 85 def analyze_coverage(results: Results, outcomes: Outcomes, 96 results.error('Test case not executed: {}', suite_case) 98 results.warning('Test case not executed: {}', suite_case) 102 results.error('Allow listed test case was executed: {}', suite_case) 104 results.warning('Allow listed test case was executed: {}', suite_case) 118 def analyze_driver_vs_reference(results: Results, outcomes: Outcomes, [all …]
|
D | audit-validity-dates.py | 244 results: typing.Dict[str, AuditData], 260 if d.identifier in results: 261 results[d.identifier].locations.extend(d.locations) 263 results[d.identifier] = d 292 results = [] 300 results.append(result) 307 results.append(result) 309 return results
|
/openthread-latest/tests/scripts/thread-cert/ |
D | addon_test_channel_manager_autocsl.py | 86 results = self.nodes[SSED].get_channel_monitor_info() 87 self.assertTrue(int(results['count']) > 970) 105 results = self.nodes[SSED].get_channel_manager_config() 106 self.assertTrue(int(results['auto']) == 1) 107 self.assertTrue(results['cca threshold'] == '0x0000') 108 self.assertTrue(int(results['interval']) == interval) 109 self.assertTrue('11-26' in results['supported']) 133 results = self.nodes[SSED].get_channel_manager_config() 134 self.assertTrue(int(results['autocsl']) == 1) 135 self.assertTrue(int(results['channel']) == csl_channel)
|
D | test_mac_scan.py | 69 results = self.nodes[LEADER].scan(result=True) 70 logging.info('scan result: %r', results) 71 self.assertEqual(len(results), 1) 72 network = results[0]
|
D | node.py | 819 results = self._expect_results(pattern, *args, **kwargs) 820 assert len(results) == 1, results 821 return results[0] 832 results = [line for line in output if self._match_pattern(line, pattern)] 833 return results
|
/openthread-latest/tools/cp-caps/ |
D | rcp_caps_test.py | 131 …results = self.__dut.iperf3_client(host=ref_mleid, bitrate=bitrate, transmit_time=transmit_time, l… 134 if not results: 138 …self.__output_format_string('Throughput', self.__bitrate_to_string(results['receiver']['bitrate'])) 183 results = initiator.linkmetrics_request_single(subject_address, link_metrics_flags) 184 if not ('lqi' in results.keys() and 'rssi' in results.keys()): 187 results = initiator.linkmetrics_request_forward(subject_address, seriesid) 188 if not ('lqi' in results.keys() and 'rssi' in results.keys()):
|
/openthread-latest/tools/otci/otci/ |
D | otci.py | 2231 results = {} 2261 results['lqi'] = self.__parse_numbers(line)[0] 2263 results['margin'] = self.__parse_numbers(line)[0] 2265 results['rssi'] = self.__parse_numbers(line)[0] 2267 results['pdu_counter'] = self.__parse_numbers(line)[0] 2269 return results 2832 results = {} 2839 results['sender'] = self.__parse_iperf3_report(line) 2841 results['receiver'] = self.__parse_iperf3_report(line) 2843 return results [all …]
|
/openthread-latest/tools/harness-automation/doc/ |
D | quickstart.rst | 46 This will record the results in result.json, so that you can continue running cases once broken. Yo…
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_bignum_core.function | 15 * \param[in,out] X Temporary storage to be used for results. 91 * \param[in,out] X Temporary storage to be used for results. 714 * We also have the different results for sizeof(mbedtls_mpi_uint) == 4 or 8.
|
D | test_suite_bignum_random.function | 353 * the case if the results are uniformly distributed.
|
D | test_suite_ssl.function | 85 /* Make sure calling put and get on NULL buffer results in error. */ 96 /* Make sure calling put and get on a buffer that hasn't been set up results 108 /* Make sure calling put and get on NULL input only results in 1330 /* Compare results */ 1489 /* Compare results */
|
D | test_suite_pk.data | 1210 # MBEDTLS_ERR_PK_INVALID_ALG is the error that results from our translation 1459 # MBEDTLS_ERR_PK_INVALID_ALG is the error that results from our translation 1532 # MBEDTLS_ERR_PK_INVALID_ALG is the error that results from our translation
|
D | test_suite_cipher.function | 857 * this results in the expected plaintext, and that
|
D | test_suite_ecp.function | 259 * (test vectors mostly taken from ECDSA intermediate results)
|
D | test_suite_psa_crypto.function | 7054 * after completion results in a BAD_STATE error. 7056 * 5. Check that calling start() again after start fails results in a BAD_STATE 7642 * after completion results in a BAD_STATE error. 7644 * 5. Check that calling start() again after start fails results in a BAD_STATE
|
/openthread-latest/third_party/mbedtls/repo/ |
D | CONTRIBUTING.md | 17 …your contribution passes basic tests before submission, and check the CI results after making a pu…
|
D | CMakeLists.txt | 379 COMMAND tail -n1 memcheck.log | grep 'Memory checking results:' > /dev/null
|
D | ChangeLog | 789 to best results when tested on Cortex-M4 and Intel i7. 3529 * Verify results of RSA private key operations to defend 4133 * Fix bug in mbedtls_mpi_add_mpi() that caused wrong results when the three 4547 extendedKeyUsage on the leaf certificate was lost (results not accessible 4555 * Add x509_crt_verify_info() to display certificate verification results. 5910 * Corrected is_prime() results for 0, 1 and 2 (found by
|
/openthread-latest/third_party/mbedtls/repo/3rdparty/p256-m/p256-m/ |
D | README.md | 74 - "produce incorrect results for some rare curve points" - this is avoided by 272 Note: results in microseconds (previous benchmarks in milliseconds)
|
/openthread-latest/doc/ |
D | Doxyfile.in | 1541 # key> to jump into the search results window, the results can be navigated 1565 # script for searching. Instead the search results are written to an XML file 1568 # search results. 1581 # which will return the search results when EXTERNAL_SEARCH is enabled. 1602 # projects and redirect the results back to the right project.
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-thread-safety/ |
D | psa-thread-safety.md | 257 Although the `step` feature used in some tests is thread-safe, it may produce unexpected results fo…
|
/openthread-latest/src/cli/ |
D | README.md | 2583 Possible results for prefix manager are (`OPENTHREAD_CONFIG_NAT64_BORDER_ROUTING_ENABLE` is require… 2590 Possible results for NAT64 translator are (`OPENTHREAD_CONFIG_NAT64_TRANSLATOR_ENABLE` is required):
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/ |
D | psa-shared-memory.md | 277 …into chunks of the temporary buffer size and filling the output from the results until the operati…
|