Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 23 of 23) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_entropy.data43 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
Dtest_suite_entropy.function318 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,
Dtest_suite_debug.data1 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)
Dtest_suite_psa_crypto_init.function33 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;
Dtest_suite_debug.function55 void debug_print_msg_threshold(int threshold, int level, char *file,
79 mbedtls_debug_set_threshold(threshold);
Dtest_suite_bignum_random.function70 * number is above some threshold A. The threshold value is heuristic and
Dtest_suite_x509parse.function17 than the current threshold 19. To test larger values, please \
Dtest_suite_ssl.function1389 size_t threshold = 96; /* Maximum offset to test against */
1413 for (offset = 0; offset <= threshold; offset++) {
/openthread-latest/tests/toranj/cli/
Dtest-001-get-set.py74 threshold = '1' variable
75 node.set_router_upgrade_threshold(threshold)
76 verify(node.get_router_upgrade_threshold() == threshold)
Dcli.py276 def set_router_upgrade_threshold(self, threshold): argument
277 self._cli_no_output('routerupgradethreshold', threshold)
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dentropy.h97 size_t MBEDTLS_PRIVATE(threshold); /**< Minimum bytes required before release */
162 size_t threshold, int strong);
Ddebug.h150 void mbedtls_debug_set_threshold(int threshold);
/openthread-latest/tools/cp-caps/
Drcp_caps_test.py422 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/
Dentropy.c84 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()
Ddebug.c26 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/
Dncp_base_ftd.cpp568 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()
Dncp_base.cpp2386 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()
Dncp_base_mtd.cpp2444 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/
Dnode.py1886 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/
DREADME.md522 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/
Dotci.py639 def set_router_upgrade_threshold(self, threshold: int):
647 def set_router_downgrade_threshold(self, threshold: int):
/openthread-latest/doc/
DDoxyfile.in2204 # 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/
DChangeLog1141 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