/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_entropy.data | 43 Entropy threshold: 16=2*8 46 Entropy threshold: 32=1*32 49 Entropy threshold: 0* never reaches the threshold 52 Entropy threshold: 1024 never reached 67 Entropy calls: 1 strong, 2*BLOCK_SIZE to reach threshold
|
D | test_suite_entropy.function | 318 void entropy_threshold(int threshold, int chunk_size, int result) 332 /* Set strong source that reaches its threshold immediately and 333 * a weak source whose threshold is a test parameter. */ 338 &weak, threshold, 363 int threshold, int chunk_size, 383 &dummy1, threshold, 386 &dummy2, threshold,
|
D | test_suite_debug.data | 1 Debug print msg (threshold 1, level 0) 4 Debug print msg (threshold 1, level 1) 7 Debug print msg (threshold 1, level 2) 10 Debug print msg (threshold 0, level 1) 13 Debug print msg (threshold 0, level 5)
|
D | test_suite_psa_crypto_init.function | 33 size_t threshold; /* Minimum bytes to make mbedtls_entropy_func happy */ 109 fake_entropy_state.threshold, 332 void fake_entropy_source(int threshold, 343 fake_entropy_state.threshold = threshold;
|
D | test_suite_debug.function | 55 void debug_print_msg_threshold(int threshold, int level, char *file, 79 mbedtls_debug_set_threshold(threshold);
|
D | test_suite_bignum_random.function | 70 * number is above some threshold A. The threshold value is heuristic and
|
D | test_suite_x509parse.function | 17 than the current threshold 19. To test larger values, please \
|
D | test_suite_ssl.function | 1389 size_t threshold = 96; /* Maximum offset to test against */ 1413 for (offset = 0; offset <= threshold; offset++) {
|
/openthread-latest/tests/toranj/cli/ |
D | test-001-get-set.py | 74 threshold = '1' variable 75 node.set_router_upgrade_threshold(threshold) 76 verify(node.get_router_upgrade_threshold() == threshold)
|
D | cli.py | 276 def set_router_upgrade_threshold(self, threshold): argument 277 self._cli_no_output('routerupgradethreshold', threshold)
|
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/ |
D | entropy.h | 97 size_t MBEDTLS_PRIVATE(threshold); /**< Minimum bytes required before release */ 162 size_t threshold, int strong);
|
D | debug.h | 150 void mbedtls_debug_set_threshold(int threshold);
|
/openthread-latest/tools/cp-caps/ |
D | rcp_caps_test.py | 422 threshold = 80 441 ret = dut_stats['sent_packets'] == packets and ref_stats['received_packets'] > threshold 449 threshold = 80 470 … ret = dut_stats['sent_packets'] > threshold and ref_stats['received_packets'] > threshold 479 threshold = 80 500 ret = dut_stats['sent_packets'] == packets and ref_stats['received_packets'] > threshold
|
/openthread-latest/third_party/mbedtls/repo/library/ |
D | entropy.c | 84 size_t threshold, int strong) in mbedtls_entropy_add_source() argument 102 ctx->source[idx].threshold = threshold; in mbedtls_entropy_add_source() 311 if (ctx->source[i].size < ctx->source[i].threshold) { in mbedtls_entropy_func()
|
D | debug.c | 26 void mbedtls_debug_set_threshold(int threshold) in mbedtls_debug_set_threshold() argument 28 debug_threshold = threshold; in mbedtls_debug_set_threshold()
|
/openthread-latest/src/ncp/ |
D | ncp_base_ftd.cpp | 568 uint8_t threshold = 0; in HandlePropertySet() local 571 SuccessOrExit(error = mDecoder.ReadUint8(threshold)); in HandlePropertySet() 573 otThreadSetRouterUpgradeThreshold(mInstance, threshold); in HandlePropertySet() 586 uint8_t threshold = 0; in HandlePropertySet() local 589 SuccessOrExit(error = mDecoder.ReadUint8(threshold)); in HandlePropertySet() 591 otThreadSetRouterDowngradeThreshold(mInstance, threshold); in HandlePropertySet()
|
D | ncp_base.cpp | 2386 int8_t threshold; in HandlePropertyGet() local 2389 error = otPlatRadioGetCcaEnergyDetectThreshold(mInstance, &threshold); in HandlePropertyGet() 2393 error = mEncoder.WriteInt8(threshold); in HandlePropertyGet() 2405 int8_t threshold = 0; in HandlePropertySet() local 2408 SuccessOrExit(error = mDecoder.ReadInt8(threshold)); in HandlePropertySet() 2409 error = otPlatRadioSetCcaEnergyDetectThreshold(mInstance, threshold); in HandlePropertySet()
|
D | ncp_base_mtd.cpp | 2444 int8_t threshold = 0; in HandlePropertySet() local 2447 SuccessOrExit(error = mDecoder.ReadInt8(threshold)); in HandlePropertySet() 2449 error = otJamDetectionSetRssiThreshold(mInstance, threshold); in HandlePropertySet()
|
/openthread-latest/tests/scripts/thread-cert/ |
D | node.py | 1886 def set_router_upgrade_threshold(self, threshold): argument 1887 cmd = 'routerupgradethreshold %d' % threshold 1891 def set_router_downgrade_threshold(self, threshold): argument 1892 cmd = 'routerdowngradethreshold %d' % threshold
|
/openthread-latest/src/cli/ |
D | README.md | 522 Get the CCA threshold in dBm measured at antenna connector per IEEE 802.15.4 - 2015 section 10.1.4. 532 Set the CCA threshold measured at antenna connector per IEEE 802.15.4 - 2015 section 10.1.4. 669 threshold: -75 2862 - xtalthreshold: The XTAL accuracy threshold for a device to become Router-Capable device, in PPM. 3463 ### routerdowngradethreshold \<threshold\> 3529 ### routerupgradethreshold \<threshold\>
|
/openthread-latest/tools/otci/otci/ |
D | otci.py | 639 def set_router_upgrade_threshold(self, threshold: int): 647 def set_router_downgrade_threshold(self, threshold: int):
|
/openthread-latest/doc/ |
D | Doxyfile.in | 2204 # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the 2206 # for no limit. Note that the threshold may be exceeded by 50% before the limit 2207 # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
|
/openthread-latest/third_party/mbedtls/repo/ |
D | ChangeLog | 1141 when MBEDTLS_SSL_IN_CONTENT_LEN is less than a threshold that depends on 4831 * debug_set_threshold() added to ignore messages over threshold level
|