/openthread-3.6.0/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_psa_crypto_init.function | 33 size_t threshold; /* Minimum bytes to make mbedtls_entropy_func happy */ 128 fake_entropy_state.threshold, 239 void fake_entropy_source( int threshold, 250 fake_entropy_state.threshold = threshold;
|
D | test_suite_entropy.function | 296 void entropy_threshold( int threshold, int chunk_size, int result ) 308 /* Set strong source that reaches its threshold immediately and 309 * a weak source whose threshold is a test parameter. */ 314 &weak, threshold, 341 int threshold, int chunk_size, 359 &dummy1, threshold, 362 &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_debug.function | 51 void debug_print_msg_threshold( int threshold, int level, char * file, 65 mbedtls_debug_set_threshold( threshold );
|
D | test_suite_mpi.function | 87 * number is above some threshold A. The threshold value is heuristic and
|
D | test_suite_x509parse.function | 15 than the current threshold 19. To test larger values, please \
|
D | test_suite_ssl.function | 3341 size_t threshold = 96; /* Maximum offset to test against */ 3362 for( offset=0; offset <= threshold; offset++ )
|
/openthread-3.6.0/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 | 265 def set_router_upgrade_threshold(self, threshold): argument 266 self._cli_no_output('routerupgradethreshold', threshold)
|
/openthread-3.6.0/third_party/mbedtls/repo/include/mbedtls/ |
D | entropy.h | 118 size_t threshold; /**< Minimum bytes required before release */ member 183 size_t threshold, int strong );
|
D | debug.h | 151 void mbedtls_debug_set_threshold( int threshold );
|
/openthread-3.6.0/third_party/mbedtls/repo/library/ |
D | entropy.c | 145 size_t threshold, int strong ) in mbedtls_entropy_add_source() argument 163 ctx->source[idx].threshold = threshold; in mbedtls_entropy_add_source() 373 if( ctx->source[i].size < ctx->source[i].threshold ) in mbedtls_entropy_func()
|
D | debug.c | 51 void mbedtls_debug_set_threshold( int threshold ) in mbedtls_debug_set_threshold() argument 53 debug_threshold = threshold; in mbedtls_debug_set_threshold()
|
/openthread-3.6.0/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 | 2330 int8_t threshold; in HandlePropertyGet() local 2333 error = otPlatRadioGetCcaEnergyDetectThreshold(mInstance, &threshold); in HandlePropertyGet() 2337 error = mEncoder.WriteInt8(threshold); in HandlePropertyGet() 2349 int8_t threshold = 0; in HandlePropertySet() local 2352 SuccessOrExit(error = mDecoder.ReadInt8(threshold)); in HandlePropertySet() 2353 error = otPlatRadioSetCcaEnergyDetectThreshold(mInstance, threshold); in HandlePropertySet()
|
D | ncp_base_mtd.cpp | 2343 int8_t threshold = 0; in HandlePropertySet() local 2346 SuccessOrExit(error = mDecoder.ReadInt8(threshold)); in HandlePropertySet() 2348 error = otJamDetectionSetRssiThreshold(mInstance, threshold); in HandlePropertySet()
|
/openthread-3.6.0/tests/scripts/thread-cert/ |
D | node.py | 1820 def set_router_upgrade_threshold(self, threshold): argument 1821 cmd = 'routerupgradethreshold %d' % threshold 1825 def set_router_downgrade_threshold(self, threshold): argument 1826 cmd = 'routerdowngradethreshold %d' % threshold
|
/openthread-3.6.0/src/cli/ |
D | README.md | 405 Get the CCA threshold in dBm measured at antenna connector per IEEE 802.15.4 - 2015 section 10.1.4. 415 Set the CCA threshold measured at antenna connector per IEEE 802.15.4 - 2015 section 10.1.4. 552 threshold: -75 1046 - xtalthreshold: The XTAL accuracy threshold for a device to become Router-Capable device, in PPM. 3262 ### routerdowngradethreshold \<threshold\> 3328 ### routerupgradethreshold \<threshold\>
|
/openthread-3.6.0/tools/otci/otci/ |
D | otci.py | 620 def set_router_upgrade_threshold(self, threshold: int): 628 def set_router_downgrade_threshold(self, threshold: int):
|
/openthread-3.6.0/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-3.6.0/third_party/mbedtls/repo/doxygen/ |
D | mbedtls.doxyfile | 1779 # threshold limits the number of items for each type to make the size more 1780 # manageable. Set this to 0 for no limit. Note that the threshold may be
|
/openthread-3.6.0/third_party/mbedtls/repo/ |
D | ChangeLog | 3236 * debug_set_threshold() added to ignore messages over threshold level
|